Files
omnibot/lib/omnibot.ex

11 lines
172 B
Elixir
Raw Normal View History

defmodule Omnibot do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
Omnibot.Supervisor.start_link(name: Omnibot.Supervisor)
end
end