package domain import "github.com/google/uuid" type User struct { ID uuid.UUID Email string GivenName string Surname string IsAdmin bool }