blob: dc675f9f2c16839895970d1de888de6e891f84db [file] [log] [blame]
%%%-------------------------------------------------------------------
%% @doc trace public API
%% @end
%%%-------------------------------------------------------------------
-module(passage_app).
-behaviour(application).
%% Application callbacks
-export([start/2, stop/1]).
%%====================================================================
%% API
%%====================================================================
start(_StartType, _StartArgs) ->
passage_sup:start_link().
%%--------------------------------------------------------------------
stop(_State) ->
ok.
%%====================================================================
%% Internal functions
%%====================================================================