(query string, args ...interface{})
| 247 | // Something we can make queries on. This will either be an *sql.DB or an *sql.Tx. |
| 248 | type queryObject interface { |
| 249 | QueryRow(query string, args ...interface{}) *sql.Row |
| 250 | Query(query string, args ...interface{}) (*sql.Rows, error) |
| 251 | } |
| 252 |
no outgoing calls
no test coverage detected