Packages

Simple data modelling DSL

Current section

Files

Jump to
lee src lee_app.erl
Raw

src/lee_app.erl

%% @private
-module(lee_app).
-behaviour(application).
%% Application callbacks
-export([start/2, stop/1]).
%%%===================================================================
%%% Application callbacks
%%%===================================================================
start(_StartType, _StartArgs) ->
lee_sup:start_link().
stop(Pid) ->
ok.
%%%===================================================================
%%% Internal functions
%%%===================================================================