(ctx context.Context, in *GaugeRequest, opts ...grpc.CallOption)
| 83 | type MetricsService_GetAllGaugesClient = grpc.ServerStreamingClient[GaugeResponse] |
| 84 | |
| 85 | func (c *metricsServiceClient) GetGauge(ctx context.Context, in *GaugeRequest, opts ...grpc.CallOption) (*GaugeResponse, error) { |
| 86 | cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) |
| 87 | out := new(GaugeResponse) |
| 88 | err := c.cc.Invoke(ctx, MetricsService_GetGauge_FullMethodName, in, out, cOpts...) |
| 89 | if err != nil { |
| 90 | return nil, err |
| 91 | } |
| 92 | return out, nil |
| 93 | } |
| 94 | |
| 95 | // MetricsServiceServer is the server API for MetricsService service. |
| 96 | // All implementations must embed UnimplementedMetricsServiceServer |
nothing calls this directly
no test coverage detected