/deps/webmachine/priv/skel/src/skel_app.erl
https://code.google.com/p/zotonic/ · Erlang · 22 lines · 9 code · 6 blank · 7 comment · 0 complexity · 55db3f7bcb992700894e74d9675e546d MD5 · raw file
- %% @author author <author@example.com>
- %% @copyright YYYY author.
- %% @doc Callbacks for the skel application.
- -module(skel_app).
- -author('author <author@example.com>').
- -behaviour(application).
- -export([start/2,stop/1]).
- %% @spec start(_Type, _StartArgs) -> ServerRet
- %% @doc application start callback for skel.
- start(_Type, _StartArgs) ->
- skel_deps:ensure(),
- skel_sup:start_link().
- %% @spec stop(_State) -> ServerRet
- %% @doc application stop callback for skel.
- stop(_State) ->
- ok.