Current section
Files
Jump to
Current section
Files
lib/hedwig_slack.ex
defmodule HedwigSlack do
use Application
def start(_, _) do
import Supervisor.Spec, warn: false
children = [
supervisor(HedwigSlack.ConnectionSupervisor, [])
]
Supervisor.start_link(children, strategy: :one_for_one)
end
end