package auth import "github.com/google/uuid" type User struct { ID uuid.UUID `json:"id"` Email string `json:"email"` Name string `json:"name"` } type storedUser struct { User PasswordHash string }