Files
timmy-config/go/pkg/mod/github.com/mailru/easyjson@v0.9.0/tests/escaping.go
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"`
}