12 lines
155 B
Go
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"`
|
|
}
|