dbConnection simulates a resource to share.
| 20 | |
| 21 | // dbConnection simulates a resource to share. |
| 22 | type dbConnection struct { |
| 23 | ID int32 |
| 24 | } |
| 25 | |
| 26 | // Close implements the io.Closer interface so dbConnection |
| 27 | // can be managed by the pool. Close performs any resource |
nothing calls this directly
no outgoing calls
no test coverage detected