aboutsummaryrefslogtreecommitdiff
path: root/lib/octonetcat/supervisor.ex
blob: e66b4e7e81e1488d626a5a5bf52436f1232fca92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
defmodule Octonetcat.Supervisor do
  @moduledoc """
  Root Octonetcat Supervosor
  """

  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