1 %% @author Andy Gross <andy@basho.com>
2 %% @author Justin Sheehy <justin@basho.com>
4 %% @doc Callbacks for the webmachine_demo application.
6 -module(webmachine_demo_app).
8 -behaviour(application).
9 -export([start/2,stop/1]).
12 %% @spec start(_Type, _StartArgs) -> ServerRet
13 %% @doc application start callback for webmachine_demo.
14 start(_Type, _StartArgs) ->
15 webmachine_demo_sup:start_link().
17 %% @spec stop(_State) -> ServerRet
18 %% @doc application stop callback for webmachine_demo.