Packages
Elixir wrapper around [MySensors](https://github.com/mysensors/MySensors)
Retired package: Release invalid
Current section
Files
Jump to
Current section
Files
lib/my_sensors.mysgw.application.ex
defmodule MySensors.MySGW.Application do
@moduledoc false
use Application
@doc false
def start(_type, _args) do
import Supervisor.Spec, warn: false
children = [
worker(MySensors.MySGW, []),
]
opts = [strategy: :one_for_one, name: __MODULE__]
Supervisor.start_link(children, opts)
end
end