summaryrefslogtreecommitdiff
path: root/test/rebar_edoc_SUITE_data/foo/apps/bar2/src/bar2_app.erl
blob: d0058a007ec2a6735038d683cc16f136858faa39 (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
%%%-------------------------------------------------------------------
%% @doc bar2 public API
%% @end
%%%-------------------------------------------------------------------

-module(bar2_app).

-behaviour(application).

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

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

start(_StartType, _StartArgs) ->
    bar2_sup:start_link().

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

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