Current section

Files

Jump to
romeo lib romeo.ex
Raw

lib/romeo.ex

defmodule Romeo do
use Application
def start(_type, _args) do
import Supervisor.Spec, warn: false
children = [
# worker(Romeo.Worker, [arg1, arg2, arg3]),
]
opts = [strategy: :one_for_one, name: Romeo.Supervisor]
Supervisor.start_link(children, opts)
end
end