summaryrefslogtreecommitdiff
path: root/priv/templates/app.erl
blob: 1c3e8f2edaac1888f77e27be44dfe3963d1352bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
%%%-------------------------------------------------------------------
%% @doc {{appid}} public API
%% @end
%%%-------------------------------------------------------------------

-module({{appid}}_app).

-behaviour(application).

%% Application callbacks
-export([start/2
        ,stop/1]).

%%====================================================================
%% API
%%====================================================================

start(_StartType, _StartArgs) ->
    {{appid}}_sup:start_link().

%%--------------------------------------------------------------------
stop(_State) ->
    ok.

%%====================================================================
%% Internal functions
%%====================================================================