Current section
Files
Jump to
Current section
Files
lib/godaddy/application.ex
defmodule Godaddy.Application do
@moduledoc false
# See http://elixir-lang.org/docs/stable/elixir/Application.html
use Application
def start(_type, _args) do
import Supervisor.Spec, warn: false
children = [
]
opts = [
strategy: :one_for_one,
name: Godaddy.Supervisor
]
Supervisor.start_link(children, opts)
end
end