summaryrefslogtreecommitdiff
path: root/src/catlfish_app.erl
blob: eef74d65247ff4d2d8163a472b647d4adda9b781 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
%%% 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.