Current section

Files

Jump to
oox src oox_app.erl
Raw

src/oox_app.erl

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