Packages

An OTP application

Current section

Files

Jump to
egcache src egcache_app.erl
Raw

src/egcache_app.erl

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