diff --git a/client/client.go b/client/client.go index 574a3e4..5d38d73 100644 --- a/client/client.go +++ b/client/client.go @@ -7,8 +7,8 @@ type Question struct { } type Answer struct { - Text string - Correct bool + Text string `json:"text"` + Correct bool `json:"correct"` } type Quiz struct {