summaryrefslogtreecommitdiff
path: root/lib/irc/application.ex
blob: 82fc0531946e5c760b1b79dc75db2e8dd7cb497a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
defmodule Irc.Application do
  # See https://hexdocs.pm/elixir/Application.html
  # for more information on OTP Applications
  @moduledoc false

  use Application

  def start(_type, _args) do
    # List all child processes to be supervised
    children = [
      # Starts a worker by calling: Irc.Worker.start_link(arg)
      # {Irc.Worker, arg}
    ]

    # See https://hexdocs.pm/elixir/Supervisor.html
    # for other strategies and supported options
    opts = [strategy: :one_for_one, name: Irc.Supervisor]
    Supervisor.start_link(children, opts)
  end
end