diff options
author | Linus Nordberg <linus@nordu.net> | 2017-03-15 17:17:58 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2017-03-15 17:17:58 +0100 |
commit | 598d6ae6d00644c7f6e318cf5a4928ee5a8eb9ca (patch) | |
tree | 7653518afa13e7ccc1a3925603d36d85570cb88c /statusserver/src/statusserver_app.erl | |
parent | 7e41c7c7630c4a96567029e6b4d7688a7df6ccee (diff) | |
parent | 8bb572816040a8ecda50be9687cd1ddc76436f65 (diff) |
Merge branch 'map-statusserver'
Diffstat (limited to 'statusserver/src/statusserver_app.erl')
-rw-r--r-- | statusserver/src/statusserver_app.erl | 13 |
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. |