blob: 56f6cc29d33fd7e4d196d2d22abe855674e0c473 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
%%% Copyright (c) 2014, 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.
|