Shutdownable is an interface representing the ability to shutdown a particular resource
| 14 | // Shutdownable is an interface representing the ability to |
| 15 | // shutdown a particular resource |
| 16 | type Shutdownable interface { |
| 17 | Shutdown(ctx context.Context) error |
| 18 | } |
| 19 | |
| 20 | var ( |
| 21 | registered []Shutdownable |
no outgoing calls
no test coverage detected