aboutsummaryrefslogtreecommitdiffstats
path: root/lib/lithium.ex
blob: b42c45a3f344dec5d2fa1d2758b4c92e19029379 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
defmodule Lithium do
  use Application

  @moduledoc """
  Lithium is a mail authentication daemon.
  """

  @impl true
  def start(_start_type, _start_args) do
    children = [
      {Lithium.Util.PublicSuffix, []}
    ]

    opts = [strategy: :one_for_one, name: Lithium.Supervisor]
    Supervisor.start_link(children, opts)
  end
end