Current section

Files

Jump to
phoenix lib phoenix.ex
Raw

lib/phoenix.ex

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