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