Packages

Like Plug, but for Slack Bots.

Current section

Files

Jump to
ex_bot lib ex_bot application.ex
Raw

lib/ex_bot/application.ex

defmodule ExBot.Application do
@moduledoc false
use Application
def start(_type, _args) do
Supervisor.start_link(
[ExBot.Slack.Supervisor],
strategy: :one_for_one,
name: ExBot.Supervisor
)
end
end