package profile import ( "time" "github.com/google/uuid" ) type Achievement struct { ID uuid.UUID ProfileID uuid.UUID Name string Description string CreatedAt time.Time UpdatedAt time.Time }