aboutsummaryrefslogtreecommitdiff
path: root/lib/octochat/supervisor.ex
blob: b26f4de74f47189d9c49331addbe9d2fc83630c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 = []

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

end