3 -behaviour (application
).
6 -include_lib("eunit/include/eunit.hrl").
12 %% application callbacks
13 -export ([start
/2, stop
/1]).
15 %%====================================================================
17 %%====================================================================
19 [application:start(App
) || App
<- [sasl
, lwes_erlang
]].
21 %%====================================================================
22 %% application callbacks
23 %%====================================================================
24 start (_Type
, _Args
) ->
25 case lwes_sup:start_link() of
35 %%====================================================================
37 %%====================================================================