package authentication type UserRepository interface { GetUserId(email string) (int, error) CreateFromEmail(email string) (int, error) }