# `AshAuthentication.Supervisor`
[🔗](https://github.com/team-alembic/ash_authentication/blob/main/lib/ash_authentication/supervisor.ex#L5)

Starts and manages any processes required by AshAuthentication.

Add to your application supervisor:

## Example

```elixir
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
```

# `child_spec`

Returns a specification to start this module under a supervisor.

See `Supervisor`.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
