Current section
Files
Jump to
Current section
Files
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
%%====================================================================