amethyst/apps/example_game/lib/example/application.ex
Kodi Craft 4a5ccc719d
Some checks failed
Build & Test / nix-build (push) Failing after 59s
Some significant refactoring progress
2024-08-28 14:52:13 +02:00

19 lines
449 B
Elixir

defmodule Example.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
children = [
]
# See https://hexdocs.pm/elixir/Supervisor.html
# for other strategies and supported options
opts = [strategy: :one_for_one, name: Example.Supervisor]
Supervisor.start_link(children, opts)
end
end