Current section

Files

Jump to
aliyun lib aliyun.ex
Raw

lib/aliyun.ex

defmodule Aliyun do
use Application
def start(_type, _args) do
import Supervisor.Spec, warn: false
Confex.resolve_env!(:aliyun)
children = [
]
opts = [strategy: :one_for_one, name: Aliyun.Supervisor]
Supervisor.start_link(children, opts)
end
end