View Source AshAuthentication.Supervisor (ash_authentication v3.11.10)
Starts and manages any processes required by AshAuthentication.
Add to your application supervisor:
Example
defmodule MyApp.Application do
use Application
def start(_type, _args) do
children = [
{AshAuthentication.Supervisor, otp_app: :my_app}
]
Supervisor.start_link(children, strategy: :one_for_one, name: MyApp.Supervisor)
end
end
Summary
Functions
Returns a specification to start this module under a supervisor.
Functions
Returns a specification to start this module under a supervisor.
See Supervisor
.