]> review.fuel-infra Code Review - packages/trusty/rabbitmq-server.git/blob
f36f22e24befda3c9ccaf7adf68b53e512d03ed0
[packages/trusty/rabbitmq-server.git] /
1 %% @author Andy Gross <andy@basho.com>
2 %% @author Justin Sheehy <justin@basho.com>
3
4 %% @doc Callbacks for the webmachine_demo application.
5
6 -module(webmachine_demo_app).
7
8 -behaviour(application).
9 -export([start/2,stop/1]).
10
11
12 %% @spec start(_Type, _StartArgs) -> ServerRet
13 %% @doc application start callback for webmachine_demo.
14 start(_Type, _StartArgs) ->
15     webmachine_demo_sup:start_link().
16
17 %% @spec stop(_State) -> ServerRet
18 %% @doc application stop callback for webmachine_demo.
19 stop(_State) ->
20     ok.