Packages

Implements LRU cache in Erlang OTP application

Current section

Files

Jump to
elru src elru_app.erl
Raw

src/elru_app.erl

%%%-------------------------------------------------------------------
%% @doc elru public API
%% @end
%%%-------------------------------------------------------------------
-module(elru_app).
-behaviour(application).
%% Application callbacks
-export([start/2, stop/1]).
%%====================================================================
%% API
%%====================================================================
start(_StartType, _StartArgs) ->
elru_sup:start_link().
%%--------------------------------------------------------------------
stop(_State) ->
ok.
%%====================================================================
%% Internal functions
%%====================================================================