Packages

A simple 12-Factor configuration service for Elixir.

Current section

Files

Jump to
env_conf lib env_conf.ex
Raw

lib/env_conf.ex

defmodule EnvConf do
use Application
# See http://elixir-lang.org/docs/stable/Application.Behaviour.html
# for more information on OTP Applications
def start(_type, args \\ []) do
EnvConf.Supervisor.start_link(args)
end
end