增加服务分组管理

This commit is contained in:
刘祥超
2020-10-29 20:53:08 +08:00
parent 181976f79f
commit f711a52288
22 changed files with 403 additions and 32 deletions

View File

@@ -94,6 +94,10 @@ func (this *RPCClient) ServerRPC() pb.ServerServiceClient {
return pb.NewServerServiceClient(this.pickConn())
}
func (this *RPCClient) ServerGroupRPC() pb.ServerGroupServiceClient {
return pb.NewServerGroupServiceClient(this.pickConn())
}
func (this *RPCClient) APINodeRPC() pb.APINodeServiceClient {
return pb.NewAPINodeServiceClient(this.pickConn())
}