aboutsummaryrefslogtreecommitdiff
path: root/lib/octochat/supervisor.ex
blob: 0c38829d53725fa3486d7ff89e6da2c7656b62b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 = [
      worker(Task, [Octochat.Acceptor, :accept, []])
    ]

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

end