summaryrefslogtreecommitdiff
path: root/statusserver/src/statusserver_app.erl
blob: 2fd8b8dc851f76d62f4195855070def98c8e8057 (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(statusserver_app).
-behaviour(application).
-export([start/2, stop/1]).

start(normal, Args) ->
    statusserver:init_module(),
    statusserver_sup:start_link(Args).

stop(_State) ->
    ok.