Current section

Files

Jump to
tundra lib tundra application.ex
Raw

lib/tundra/application.ex

defmodule Tundra.Application do
# See https://hexdocs.pm/elixir/Application.html
# for more information on OTP Applications
@moduledoc false
use Application
@impl true
def start(_type, _args) do
DynamicSupervisor.start_link(strategy: :one_for_one, name: Tundra.DynamicSupervisor)
end
end