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