wayfarer/lib/switch/application.ex
James Harton 3403f9d043
All checks were successful
continuous-integration/drone/push Build is passing
chore: Rename switch -> wayfarer.
2023-10-14 11:10:56 +13:00

12 lines
266 B
Elixir

defmodule Wayfarer.Application do
@moduledoc false
use Application
@impl true
@spec start(any, any) :: {:error, any} | {:ok, pid}
def start(_type, _args) do
[]
|> Supervisor.start_link(strategy: :one_for_one, name: Wayfarer.Supervisor)
end
end