Current section
Files
Jump to
Current section
Files
lib/mavlink/connection_supervisor.ex
defmodule XMAVLink.ConnectionSupervisor do
@moduledoc false
use DynamicSupervisor
def start_link(_opts \\ []) do
DynamicSupervisor.start_link(__MODULE__, [])
end
@impl true
def init(_opts) do
DynamicSupervisor.init(strategy: :one_for_one)
end
end