package training import "github.com/google/uuid" type FeedbackID uuid.UUID type Feedback struct { ID FeedbackID AttendeeID AttendeeID Rating int Comment string IsAnonymous bool IsSharingAllowed bool }