blob: 6caf2b7525581ca4ceeb6e3a9c5da3d0bf50de04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
%%% Copyright (c) 2017, NORDUnet A/S.
%%% See LICENSE for licensing information.
-module(statsserver_app).
-behaviour(application).
-export([start/2, stop/1]).
start(normal, Args) ->
statsserver:init_module(),
statsserver_sup:start_link(Args).
stop(_State) ->
ok.
|