From acb3544d4b112121b5d9414237d2af7860ccc2a3 Mon Sep 17 00:00:00 2001 From: JianBo He Date: Fri, 1 Apr 2022 09:55:47 +0800 Subject: [PATCH] style(authz): reformat authz subdir source files --- apps/emqx_authz/src/proto/emqx_authz_proto_v1.erl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/apps/emqx_authz/src/proto/emqx_authz_proto_v1.erl b/apps/emqx_authz/src/proto/emqx_authz_proto_v1.erl index 66f303397..d3c2dc6f4 100644 --- a/apps/emqx_authz/src/proto/emqx_authz_proto_v1.erl +++ b/apps/emqx_authz/src/proto/emqx_authz_proto_v1.erl @@ -18,9 +18,10 @@ -behaviour(emqx_bpapi). --export([ introduced_in/0 - , lookup_from_all_nodes/2 - ]). +-export([ + introduced_in/0, + lookup_from_all_nodes/2 +]). -include_lib("emqx/include/bpapi.hrl"). @@ -30,6 +31,6 @@ introduced_in() -> "5.0.0". -spec lookup_from_all_nodes([node()], binary()) -> - emqx_rpc:erpc_multicall(). + emqx_rpc:erpc_multicall(). lookup_from_all_nodes(Nodes, ResourceId) -> erpc:multicall(Nodes, emqx_authz_api_sources, lookup_from_local_node, [ResourceId], ?TIMEOUT).