实现基础的阈值设置

This commit is contained in:
GoEdgeLab
2021-05-04 21:02:25 +08:00
parent 4b44768f2a
commit 7cbabe51c0
14 changed files with 615 additions and 1 deletions

View File

@@ -95,6 +95,10 @@ func (this *RPCClient) NodeValueRPC() pb.NodeValueServiceClient {
return pb.NewNodeValueServiceClient(this.pickConn())
}
func (this *RPCClient) NodeThresholdRPC() pb.NodeThresholdServiceClient {
return pb.NewNodeThresholdServiceClient(this.pickConn())
}
func (this *RPCClient) ServerRPC() pb.ServerServiceClient {
return pb.NewServerServiceClient(this.pickConn())
}