(ctx context.Context, query string, args ...any)
| 195 | // queryer abstracts *sql.DB and *sql.Tx for shared read helpers. |
| 196 | type queryer interface { |
| 197 | QueryRowContext(ctx context.Context, query string, args ...any) *sql.Row |
| 198 | QueryContext(ctx context.Context, query string, args ...any) (*sql.Rows, error) |
| 199 | } |
| 200 |
no outgoing calls