1 %% @author author <author@example.com>
2 %% @copyright YYYY author.
4 %% @doc Callbacks for the {{appid}} application.
6 -module({{appid}}_app).
7 -author('author <author@example.com>').
9 -behaviour(application).
10 -export([start/2,stop/1]).
13 %% @spec start(_Type, _StartArgs) -> ServerRet
14 %% @doc application start callback for {{appid}}.
15 start(_Type, _StartArgs) ->
16 {{appid}}_sup:start_link().
18 %% @spec stop(_State) -> ServerRet
19 %% @doc application stop callback for {{appid}}.