| 36 | ) |
| 37 | |
| 38 | type Datasource struct { |
| 39 | Conn *sql.DB |
| 40 | Cache cache.Cache |
| 41 | } |
| 42 | |
| 43 | // Close closes the underlying database connection pool. |
| 44 | func (d *Datasource) Close() error { |
nothing calls this directly
no outgoing calls
no test coverage detected