allowlist.go 183 B

1234567
  1. package repository
  2. // AllowlistRepository represents the set of queries on the
  3. // Allowlist model
  4. type AllowlistRepository interface {
  5. UserEmailExists(email string) (bool, error)
  6. }