defmodule NeonVertigoService do @moduledoc """ Documentation for `NeonVertigoService`. """ use Application @impl true def start(_start_type, _start_args) do children = [ NeonVertigoService.Repo, NeonVertigoService.Mqtt.Supervisor, ] {:ok, _spid} = Supervisor.start_link(children, strategy: :one_for_one) end end