errors.go 492 B

1234567891011121314151617181920212223242526
  1. package tests
  2. //easyjson:json
  3. type ErrorIntSlice []int
  4. //easyjson:json
  5. type ErrorBoolSlice []bool
  6. //easyjson:json
  7. type ErrorUintSlice []uint
  8. //easyjson:json
  9. type ErrorStruct struct {
  10. Int int `json:"int"`
  11. String string `json:"string"`
  12. Slice []int `json:"slice"`
  13. IntSlice []int `json:"int_slice"`
  14. }
  15. type ErrorNestedStruct struct {
  16. ErrorStruct ErrorStruct `json:"error_struct"`
  17. Int int `json:"int"`
  18. }
  19. //easyjson:json
  20. type ErrorIntMap map[uint32]string