ClosableClientConn is grpc.ClientConnInterface with Close function
| 43 | |
| 44 | // ClosableClientConn is grpc.ClientConnInterface with Close function |
| 45 | type ClosableClientConn interface { |
| 46 | grpc.ClientConnInterface |
| 47 | Close() error |
| 48 | } |
| 49 | |
| 50 | // HealthAndIngesterClient is the union of IngesterClient and grpc_health_v1.HealthClient. |
| 51 | type HealthAndIngesterClient interface { |
no outgoing calls
no test coverage detected