aboutsummaryrefslogtreecommitdiff
path: root/lib/toglx/supervisor.ex
blob: 74091a1a5e641aca40ba196640f85e067e90c7fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
defmodule Toglx.Supervisor do
  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