aboutsummaryrefslogtreecommitdiff
path: root/lib/octochat/supervisor.ex
blob: 9882942ce1bef35eedc93bf3c6c4dab555ae8fb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
defmodule Octochat.Supervisor do
  @moduledoc """
  Octochat OTP Supervisor tree
  """

  use Supervisor

  def start_link do
    Supervisor.start_link(__MODULE__, [], name: __MODULE__)
  end

  def init(_) do
    children = [
      supervisor(Octochat.ServerSupervisor, []),
      worker(Task, [Octochat.Acceptor, :accept, []])
    ]

    opts = [strategy: :one_for_one]
    supervise(children, opts)
  end

end