%%% 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.