(pool *pgxpool.Pool)
| 16 | } |
| 17 | |
| 18 | func NewStore(pool *pgxpool.Pool) *Store { |
| 19 | return &Store{pool: pool} |
| 20 | } |
| 21 | |
| 22 | // Get returns the user's row from account_limits. Returns (Limits{}, |
| 23 | // pgx.ErrNoRows, false) when no row exists so callers can apply |
no outgoing calls