(ctx context.Context, sql string, arguments ...any)
| 47 | |
| 48 | type dbExecutor interface { |
| 49 | Exec(ctx context.Context, sql string, arguments ...any) (pgconn.CommandTag, error) |
| 50 | Query(ctx context.Context, sql string, args ...any) (pgx.Rows, error) |
| 51 | QueryRow(ctx context.Context, sql string, args ...any) pgx.Row |
| 52 | } |
no outgoing calls