(ctx context.Context, sql string, args ...any)
| 51 | // callers to type-switch. |
| 52 | type dbExecutor interface { |
| 53 | Exec(ctx context.Context, sql string, args ...any) (pgconn.CommandTag, error) |
| 54 | Query(ctx context.Context, sql string, args ...any) (pgx.Rows, error) |
| 55 | QueryRow(ctx context.Context, sql string, args ...any) pgx.Row |
| 56 | } |
no outgoing calls