-module(pbx_app). -behaviour(application). %% Application callbacks -export([start/2, stop/1]). %% =================================================================== %% Application callbacks %% =================================================================== start(_StartType, _StartArgs) -> io:format("start: ~p ~p~n", [_StartType, _StartArgs]), pbx_sup:start_link(). stop(_State) -> io:format("stop: ~p~n", [_State]), ok.