优化节点创建流程

This commit is contained in:
GoEdgeLab
2021-08-14 18:06:24 +08:00
parent 2affb5de3e
commit 7ffdfc62f9
13 changed files with 550 additions and 17 deletions

View File

@@ -71,6 +71,10 @@ func (this *RPCClient) NodeGrantRPC() pb.NodeGrantServiceClient {
return pb.NewNodeGrantServiceClient(this.pickConn())
}
func (this *RPCClient) NodeLoginRPC() pb.NodeLoginServiceClient {
return pb.NewNodeLoginServiceClient(this.pickConn())
}
func (this *RPCClient) NodeClusterRPC() pb.NodeClusterServiceClient {
return pb.NewNodeClusterServiceClient(this.pickConn())
}