summaryrefslogtreecommitdiff
path: root/statusserver/src/statusserver_app.erl
diff options
context:
space:
mode:
Diffstat (limited to 'statusserver/src/statusserver_app.erl')
-rw-r--r--statusserver/src/statusserver_app.erl13
1 files changed, 13 insertions, 0 deletions
diff --git a/statusserver/src/statusserver_app.erl b/statusserver/src/statusserver_app.erl
new file mode 100644
index 0000000..2fd8b8d
--- /dev/null
+++ b/statusserver/src/statusserver_app.erl
@@ -0,0 +1,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.