Packages

A minimal library for posting messages to the GoDaddy API.

Current section

Files

Jump to
godaddy lib godaddy application.ex
Raw

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