Current section

Files

Jump to
sailfish lib sailfish application.ex
Raw

lib/sailfish/application.ex

defmodule Sailfish.Client.Application do
use Application
def start(_type, _args) do
children = [
{Sailfish.Client.Console.Supervisor, []}
]
opts = [strategy: :one_for_one, name: Sailfish.Client.Supervisor]
Supervisor.start_link(children, opts)
end
end