1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package models type ( Question struct { ID uint32 Text string Options []string CorrectIndex uint8 TopicID uint32 Feedback string FeedbackClass string } // Topic struct { ID uint32 Name string Level uint32 } )