AshAuthentication.Supervisor (ash_authentication v4.9.6)
View SourceStarts 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.