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