package question import "text/template" type PartData struct { Completed bool PointsWorth int Solution string } type Data struct { Question *Question UserID string Name string Text *template.Template Level Level Part1 PartData Part2 PartData }