(ctx context.Context, sql string, arguments ...any)
| 86 | // stand-alone and in-transaction callers. |
| 87 | type outboxExecutor interface { |
| 88 | Exec(ctx context.Context, sql string, arguments ...any) (pgconn.CommandTag, error) |
| 89 | } |
| 90 | |
| 91 | // outbox is the production Outbox backed by a pgxpool. |
no outgoing calls