%%% Copyright (c) 2014-2015, NORDUnet A/S. %%% See LICENSE for licensing information. -module(plop_app). -behaviour(application). -export([start/2, stop/1]). start(normal, Args) -> hackney:start(), http_auth:init_key_table(), plop:initsize(), perm:init_directory_table(), plop_sup:start_link(Args). stop(_State) -> ok.