blob: 414ac30b2f3c328742064aca9c0a53d00bcd43e5 (
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 bar1 public API
%% @end
%%%-------------------------------------------------------------------
-module(bar1_app).
-behaviour(application).
%% Application callbacks
-export([start/2, stop/1]).
%%====================================================================
%% API
%%====================================================================
start(_StartType, _StartArgs) ->
bar1_sup:start_link().
%%--------------------------------------------------------------------
stop(_State) ->
ok.
%%====================================================================
%% Internal functions
%%====================================================================
|