Packages

Statman to the rescue!

Current section

Files

Jump to
statman src statman_app.erl
Raw

src/statman_app.erl

-module(statman_app).
-behaviour(application).
%% Application callbacks
-export([start/2, stop/1]).
%% ===================================================================
%% Application callbacks
%% ===================================================================
start(_StartType, _StartArgs) ->
statman_sup:start_link([1000]).
stop(_State) ->
ok.