Files
2026-03-31 20:02:01 +00:00

12 lines
155 B
Go

package tests
//easyjson:json
type EscStringStruct struct {
A string `json:"a"`
}
//easyjson:json
type EscIntStruct struct {
A int `json:"a,string"`
}