(ctx context.Context, query string, args ...any)
| 359 | // querier is an interface that abstracts *sql.DB and *sql.Tx for query operations. |
| 360 | type querier interface { |
| 361 | QueryContext(ctx context.Context, query string, args ...any) (*sql.Rows, error) |
| 362 | QueryRowContext(ctx context.Context, query string, args ...any) *sql.Row |
| 363 | ExecContext(ctx context.Context, query string, args ...any) (sql.Result, error) |
| 364 | } |
no outgoing calls
no test coverage detected