Current section
Files
Jump to
Current section
Files
lib/atex/application.ex
defmodule Atex.Application do
@moduledoc false
use Application
def start(_type, _args) do
children = [
Atex.IdentityResolver.Cache,
Atex.OAuth.Cache,
Atex.OAuth.SessionStore,
Atex.ServiceAuth.JTICache,
{Mutex, name: Atex.SessionMutex}
]
Supervisor.start_link(children, strategy: :one_for_one)
end
end