Current section

Files

Jump to
bamboo_flowmailer lib flowmailer application.ex
Raw

lib/flowmailer/application.ex

defmodule FlowMailer.Application do
@moduledoc false
use Application
alias FlowMailer.Token
@impl true
def start(_type, _args) do
children = [
{Token, name: Token}
]
Supervisor.start_link(children, strategy: :one_for_one)
end
end