]> review.fuel-infra Code Review - packages/trusty/rabbitmq-server.git/blob
61f6b738d6086e94c5f09c14f076e48439f7d2f2
[packages/trusty/rabbitmq-server.git] /
1 %% @author author <author@example.com>
2 %% @copyright YYYY author.
3
4 %% @doc Callbacks for the {{appid}} application.
5
6 -module({{appid}}_app).
7 -author('author <author@example.com>').
8
9 -behaviour(application).
10 -export([start/2,stop/1]).
11
12
13 %% @spec start(_Type, _StartArgs) -> ServerRet
14 %% @doc application start callback for {{appid}}.
15 start(_Type, _StartArgs) ->
16     {{appid}}_sup:start_link().
17
18 %% @spec stop(_State) -> ServerRet
19 %% @doc application stop callback for {{appid}}.
20 stop(_State) ->
21     ok.