Store is the postgres-backed idempotency store.
| 91 | |
| 92 | // Store is the postgres-backed idempotency store. |
| 93 | type Store struct { |
| 94 | pool *pgxpool.Pool |
| 95 | } |
| 96 | |
| 97 | // NewStore wraps a pgx pool. The pool must already have the schema |
| 98 | // from migrations/015_idempotency_and_send_attempts.sql applied. |
nothing calls this directly
no outgoing calls
no test coverage detected