From 5fcdcceecd01b021decfa9375f2529c99910a08a Mon Sep 17 00:00:00 2001 From: GoEdgeLab Date: Sun, 28 Aug 2022 15:51:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/rpc/rpc_client.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/rpc/rpc_client.go b/internal/rpc/rpc_client.go index 23399b6c..36b1f858 100644 --- a/internal/rpc/rpc_client.go +++ b/internal/rpc/rpc_client.go @@ -126,6 +126,10 @@ func (this *RPCClient) ServerRPC() pb.ServerServiceClient { return pb.NewServerServiceClient(this.pickConn()) } +func (this *RPCClient) ServerBandwidthStatRPC() pb.ServerBandwidthStatServiceClient { + return pb.NewServerBandwidthStatServiceClient(this.pickConn()) +} + func (this *RPCClient) ServerClientSystemMonthlyStatRPC() pb.ServerClientSystemMonthlyStatServiceClient { return pb.NewServerClientSystemMonthlyStatServiceClient(this.pickConn()) }