2 %% @copyright {{appid}} {{author}}
4 %% @doc Callbacks for the {{appid}} application.
6 -module({{appid}}_app).
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}}_deps:ensure(),
17 {{appid}}_sup:start_link().
19 %% @spec stop(_State) -> ServerRet
20 %% @doc application stop callback for {{appid}}.