实现节点运行日志上传

This commit is contained in:
GoEdgeLab
2020-10-09 11:07:01 +08:00
parent 1b47a0173c
commit b64089335e
9 changed files with 98 additions and 1 deletions

View File

@@ -67,6 +67,10 @@ func (this *RPCClient) NodeRPC() pb.NodeServiceClient {
return pb.NewNodeServiceClient(this.pickConn())
}
func (this *RPCClient) NodeLogRPC() pb.NodeLogServiceClient {
return pb.NewNodeLogServiceClient(this.pickConn())
}
func (this *RPCClient) NodeGrantRPC() pb.NodeGrantServiceClient {
return pb.NewNodeGrantServiceClient(this.pickConn())
}