summaryrefslogtreecommitdiff
path: root/src/catlfish_app.erl
diff options
context:
space:
mode:
authorJosef Gustafsson <josef.gson@gmail.com>2015-09-04 12:18:19 +0200
committerJosef Gustafsson <josef.gson@gmail.com>2015-09-04 12:18:19 +0200
commitd1a2f978fb626c904fb1278c792d992ec4563acf (patch)
treee0ae1a38f9d4fc4c14b433222bff70e64bb1ac83 /src/catlfish_app.erl
parent4596485adffb636c014362bc982ee0b952c77f26 (diff)
stripping away everything except what is necessary for nagiosnagios
Diffstat (limited to 'src/catlfish_app.erl')
-rw-r--r--src/catlfish_app.erl20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/catlfish_app.erl b/src/catlfish_app.erl
deleted file mode 100644
index eef74d6..0000000
--- a/src/catlfish_app.erl
+++ /dev/null
@@ -1,20 +0,0 @@
-%%% Copyright (c) 2014-2015, NORDUnet A/S.
-%%% See LICENSE for licensing information.
-
--module(catlfish_app).
-
--behaviour(application).
-
-%% Application callbacks
--export([start/2, stop/1]).
-
-%% ===================================================================
-%% Application callbacks
-%% ===================================================================
-
-start(normal, Args) ->
- catlfish:init_cache_table(),
- catlfish_sup:start_link(Args).
-
-stop(_State) ->
- ok.