HealthChecker is a module interface that allows adding health checks to the API. See https://github.com/alexliesenfeld/health for more details.
| 168 | // |
| 169 | // See https://github.com/alexliesenfeld/health for more details. |
| 170 | type HealthChecker interface { |
| 171 | Checks() ([]health.CheckerOption, error) |
| 172 | Ready() error |
| 173 | } |
| 174 | |
| 175 | // AsynchronousCounter is a module interface that returns the number of active |
| 176 | // asynchronous requests. |
no outgoing calls
no test coverage detected