diff --git a/models/test.go b/models/test.go index 875809e..8d1ed23 100644 --- a/models/test.go +++ b/models/test.go @@ -1,10 +1,10 @@ package models type Quiz struct { - ID string - Hash string - Question *Question - Answers []*Answer - Correct *Answer - Type int + ID string `json:"id"` + Hash string `json:"hash"` + Question *Question `json:"question"` + Answers []*Answer `json:"answers"` + Correct *Answer `json:"correct"` + Type int `json:"type"` } diff --git a/probo b/probo deleted file mode 100755 index 6f46a48..0000000 Binary files a/probo and /dev/null differ