Current section
Files
Jump to
Current section
Files
src/erlang_behaviour_trees_app.erl
%%%-------------------------------------------------------------------
%% @doc erlang_behaviour_trees public API
%% @end
%%%-------------------------------------------------------------------
-module(erlang_behaviour_trees_app).
-behaviour(application).
%% Application callbacks
-export([start/2, stop/1]).
%%====================================================================
%% API
%%====================================================================
start(_StartType, _StartArgs) ->
erlang_behaviour_trees_sup:start_link().
%%--------------------------------------------------------------------
stop(_State) ->
ok.
%%====================================================================
%% Internal functions
%%====================================================================