Packages

HTTP Erlang JSON APIs - library for easy API management

Current section

Files

Jump to
heja src heja_app.erl
Raw

src/heja_app.erl

%% Description: heja_app
%%
-module(heja_app).
-behaviour(application).
%% application callbacks
-export([start/2, prep_stop/1, stop/1]).
%% application callbacks ------------------------------------------------------
start(normal, no_arg) ->
heja_sup:start_link().
prep_stop(State) ->
State.
stop(_) ->
ok.
%% Internal -------------------------------------------------------------------