A Context carries a deadline, a cancellation signal, and other values across API boundaries. Context's methods may be called by multiple goroutines simultaneously.
| 70 | // API boundaries. Context's methods may be called by multiple goroutines |
| 71 | // simultaneously. |
| 72 | type Context interface { |
| 73 | context.Context |
| 74 | } |
| 75 | |
| 76 | type connectionCloser interface { |
| 77 | CloseIdleConnections() |
nothing calls this directly
no outgoing calls
no test coverage detected