Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > 8742e21f6eb155508c15fdcbaa0351d8 > files > 102

erlang-webmachine-1.10.1-1.fc18.i686.rpm

%% @author Andy Gross <andy@basho.com>
%% @author Justin Sheehy <justin@basho.com>

%% @doc Callbacks for the webmachine_demo application.

-module(webmachine_demo_app).

-behaviour(application).
-export([start/2,stop/1]).


%% @spec start(_Type, _StartArgs) -> ServerRet
%% @doc application start callback for webmachine_demo.
start(_Type, _StartArgs) ->
    webmachine_demo_sup:start_link().

%% @spec stop(_State) -> ServerRet
%% @doc application stop callback for webmachine_demo.
stop(_State) ->
    ok.