Current section

Files

Jump to
ark lib mogs board players tracker_dynsup.ex
Raw

lib/mogs/board/players/tracker_dynsup.ex

defmodule Mogs.Players.Tracker.DynamicSupervisor do
use DynamicSupervisor
def start_link(init_arg) do
DynamicSupervisor.start_link(__MODULE__, init_arg, name: __MODULE__)
end
@impl true
def init(_init_arg) do
DynamicSupervisor.init(strategy: :one_for_one)
end
end