package training import "github.com/google/uuid" type AttendeeID uuid.UUID type Attendee struct { ID AttendeeID DateID DateID Name string Email string Company string Role string IsStudent bool HasAttended bool HasPaid bool }