Current section

Files

Jump to
boruta lib boruta application.ex
Raw

lib/boruta/application.ex

defmodule Boruta.Application do
# See https://hexdocs.pm/elixir/Application.html
# for more information on OTP Applications
@moduledoc false
use Application
def start(_type, _args) do
children = [
Boruta.Cache,
{Finch, name: OpenIDHttpClient}
]
Supervisor.start_link(children, strategy: :one_for_one, name: Boruta.Supervisor)
end
end