Current section
Files
Jump to
Current section
Files
lib/xgps.ex
defmodule XGPS do
use Application
def start(_type, _args) do
import Supervisor.Spec, warn: false
children = [
supervisor(XGPS.Ports, []),
worker(XGPS.Broadcaster, [])
]
opts = [strategy: :one_for_one, name: XGPS.Supervisor]
Supervisor.start_link(children, opts)
end
end