parent
96fdd0c31f
commit
2c3af8d9fe
|
@ -4,6 +4,8 @@
|
|||
{xref_checks,[undefined_function_calls,undefined_functions,locals_not_used,
|
||||
deprecated_function_calls,warnings_as_errors,deprecated_functions]}.
|
||||
|
||||
{erl_first_files, ["apps/emqx/src/bpapi/emqx_bpapi.erl"]}.
|
||||
|
||||
%% Deps here may duplicate with emqx.git root level rebar.config
|
||||
%% but there not be any descrpancy.
|
||||
%% This rebar.config is necessary because the app may be used as a
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
, jiffy
|
||||
, lc
|
||||
, hocon
|
||||
, emqx_bpapi
|
||||
]},
|
||||
{mod, {emqx_app,[]}},
|
||||
{env, []},
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
, forward_async/3
|
||||
]).
|
||||
|
||||
-include_lib("emqx_bpapi/include/bpapi.hrl").
|
||||
-include("bpapi.hrl").
|
||||
-include("emqx.hrl").
|
||||
|
||||
-spec forward(node(), emqx_types:topic(), emqx_types:delivery()) -> emqx_types:deliver_result().
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
emqx_bpapi
|
||||
=====
|
||||
|
||||
A library that helps maintaining EMQX's backplane API backward and
|
||||
forward compatibility.
|
|
@ -1,15 +0,0 @@
|
|||
{application, emqx_bpapi,
|
||||
[{description, "A library for verifying safety of RPC calls"},
|
||||
{vsn, "0.1.0"},
|
||||
{registered, []},
|
||||
{applications,
|
||||
[kernel,
|
||||
stdlib,
|
||||
typerefl %% Just for some metaprogramming utils
|
||||
]},
|
||||
{env,[]},
|
||||
{modules, []},
|
||||
|
||||
{licenses, ["Apache 2.0"]},
|
||||
{links, []}
|
||||
]}.
|
|
@ -13,6 +13,8 @@
|
|||
{d, snk_kind, msg}
|
||||
]}.
|
||||
|
||||
{erl_first_files, ["apps/emqx/src/bpapi/emqx_bpapi.erl"]}.
|
||||
|
||||
{xref_checks,[undefined_function_calls,undefined_functions,locals_not_used,
|
||||
deprecated_function_calls,warnings_as_errors,deprecated_functions]}.
|
||||
|
||||
|
|
Loading…
Reference in New Issue