From 64daaf148cd59bf19942014bc754992b6bc6d86d Mon Sep 17 00:00:00 2001 From: Magnus Ahltorp Date: Thu, 2 Mar 2017 12:52:16 +0100 Subject: Rename to statusserver --- statusserver/src/statusserver_app.erl | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 statusserver/src/statusserver_app.erl (limited to 'statusserver/src/statusserver_app.erl') 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. -- cgit v1.1