From 12e08090358383c5678417ae8929fca1f03ca8bc Mon Sep 17 00:00:00 2001 From: Magnus Ahltorp Date: Thu, 2 Mar 2017 00:27:59 +0100 Subject: Statusserver --- statsserver/src/statsserver_app.erl | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 statsserver/src/statsserver_app.erl (limited to 'statsserver/src/statsserver_app.erl') 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. -- cgit v1.1