(ctx context.Context, request *common.LatencyRequest)
| 38 | } |
| 39 | |
| 40 | func (s *Service) GetOutboundsLatency(ctx context.Context, request *common.LatencyRequest) (*common.LatencyResponse, error) { |
| 41 | return s.OutboundsLatency(ctx, request) |
| 42 | } |
| 43 | |
| 44 | func (s *Service) GetSystemStats(ctx context.Context, _ *common.Empty) (*common.SystemStatsResponse, error) { |
| 45 | return s.SystemStats(ctx), nil |
nothing calls this directly
no test coverage detected