defmodule MAVLink.Util.Supervisor do @moduledoc false use Supervisor def start_link(_) do Supervisor.start_link(__MODULE__, [], name: :"MAVLink.Util.Supervisor") end @impl true def init(_) do children = [ {MAVLink.Util.CacheManager, %{}}, {MAVLink.Util.FocusManager, %{}} ] Supervisor.init(children, strategy: :one_for_one) end end