mirror of
https://github.com/netbirdio/easyjson.git
synced 2026-05-22 18:44:42 -07:00
18 lines
288 B
Go
18 lines
288 B
Go
package tests
|
|
|
|
import "github.com/mailru/easyjson"
|
|
|
|
//easyjson:json
|
|
type StructWithUnknownsProxy struct {
|
|
easyjson.UnknownFieldsProxy
|
|
|
|
Field1 string
|
|
}
|
|
|
|
//easyjson:json
|
|
type StructWithUnknownsProxyWithOmitempty struct {
|
|
easyjson.UnknownFieldsProxy
|
|
|
|
Field1 string `json:",omitempty"`
|
|
}
|