1 package tests 2 3 //easyjson:json 4 type EscStringStruct struct { 5 A string `json:"a"` 6 } 7 8 //easyjson:json 9 type EscIntStruct struct { 10 A int `json:"a,string"` 11 } 12
View as plain text