Health defines the health-related operations
| 6 | |
| 7 | // Health defines the health-related operations |
| 8 | type Health interface { |
| 9 | Get(ctx context.Context) error |
| 10 | } |
| 11 | |
| 12 | // healthClient handles health-related requests |
| 13 | type healthClient struct { |
no outgoing calls
no test coverage detected