summaryrefslogtreecommitdiff
path: root/statsserver/src/statsserver_app.erl
diff options
context:
space:
mode:
authorMagnus Ahltorp <map@kth.se>2017-03-02 00:27:59 +0100
committerMagnus Ahltorp <map@kth.se>2017-03-08 23:23:13 +0100
commit12e08090358383c5678417ae8929fca1f03ca8bc (patch)
tree160e002958b6523d8a0e9f71bccad5a77c018ce2 /statsserver/src/statsserver_app.erl
parent04f5784a9af4cf49dd8a08ff4c64035272cfd370 (diff)
Statusserver
Diffstat (limited to 'statsserver/src/statsserver_app.erl')
-rw-r--r--statsserver/src/statsserver_app.erl13
1 files changed, 13 insertions, 0 deletions
diff --git a/statsserver/src/statsserver_app.erl b/statsserver/src/statsserver_app.erl
new file mode 100644
index 0000000..6caf2b7
--- /dev/null
+++ b/statsserver/src/statsserver_app.erl
@@ -0,0 +1,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.