Current section

Files

Jump to
ex_nexmo lib ex_nexmo.ex
Raw

lib/ex_nexmo.ex

defmodule ExNexmo do
@moduledoc """
TODO
"""
use Application
@doc false
def start(_, _) do
import Supervisor.Spec, warn: false
children = [
# TODO
]
opts = [strategy: :one_for_one, name: ExNexmo.Supervisor]
Supervisor.start_link(children, opts)
end
@doc false
def stop(_) do
# noop
end
end