DB wraps an SQLite connection.
| 17 | |
| 18 | // DB wraps an SQLite connection. |
| 19 | type DB struct { |
| 20 | conn *sql.DB |
| 21 | } |
| 22 | |
| 23 | // QueryHistory is a single history entry. |
| 24 | type QueryHistory struct { |
nothing calls this directly
no outgoing calls
no test coverage detected