对服务增加基础的数据统计

This commit is contained in:
GoEdgeLab
2021-01-25 16:40:31 +08:00
parent 5eef6ac267
commit f16d07c43f
11 changed files with 354 additions and 28 deletions

View File

@@ -97,6 +97,10 @@ func (this *RPCClient) ACMEAuthenticationRPC() pb.ACMEAuthenticationServiceClien
return pb.NewACMEAuthenticationServiceClient(this.pickConn())
}
func (this *RPCClient) ServerRPC() pb.ServerServiceClient {
return pb.NewServerServiceClient(this.pickConn())
}
func (this *RPCClient) ServerDailyStatRPC() pb.ServerDailyStatServiceClient {
return pb.NewServerDailyStatServiceClient(this.pickConn())
}