12 lines
287 B
Go
12 lines
287 B
Go
package response_struct
|
|
|
|
type Quiz struct {
|
|
Questions []Question `json:"questions"`
|
|
}
|
|
|
|
type Question struct {
|
|
Question string `json:"question"`
|
|
Options []string `json:"options"`
|
|
Answer string `json:"answer"`
|
|
Explanation string `json:"explanation"`
|
|
} |