(ctx context.Context, query string, args ...interface{})
| 31 | type Queryer interface { |
| 32 | ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) |
| 33 | QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) |
| 34 | } |
| 35 | |
| 36 | // Transactor defines the interface for the Begin method from the *sql.DB |
no outgoing calls
no test coverage detected