From 8ab8f46d0b8d85e62fa01083aab99ab353ad6355 Mon Sep 17 00:00:00 2001 From: GoEdgeLab Date: Wed, 28 Sep 2022 17:38:11 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E4=B8=8D=E5=BF=85=E8=A6=81?= =?UTF-8?q?=E7=9A=84=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 | 8 -------- 1 file changed, 8 deletions(-) diff --git a/internal/rpc/rpc_client.go b/internal/rpc/rpc_client.go index 36b1f858..432fa49f 100644 --- a/internal/rpc/rpc_client.go +++ b/internal/rpc/rpc_client.go @@ -174,18 +174,10 @@ func (this *RPCClient) APIMethodStatRPC() pb.APIMethodStatServiceClient { return pb.NewAPIMethodStatServiceClient(this.pickConn()) } -func (this *RPCClient) UserNodeRPC() pb.UserNodeServiceClient { - return pb.NewUserNodeServiceClient(this.pickConn()) -} - func (this *RPCClient) DBNodeRPC() pb.DBNodeServiceClient { return pb.NewDBNodeServiceClient(this.pickConn()) } -func (this *RPCClient) MonitorNodeRPC() pb.MonitorNodeServiceClient { - return pb.NewMonitorNodeServiceClient(this.pickConn()) -} - func (this *RPCClient) DBRPC() pb.DBServiceClient { return pb.NewDBServiceClient(this.pickConn()) }