defmodule Aprsme.Is.IsSupervisor do @moduledoc false use Supervisor def start_link(opts) do Supervisor.start_link(__MODULE__, :ok, opts) end @impl true def init(:ok) do children = [ {Aprsme.Is, []} ] # Allow more restarts over a longer window to survive transient network issues Supervisor.init(children, strategy: :one_for_one, max_restarts: 5, max_seconds: 60) end end