mirror of
https://github.com/netbirdio/easyjson.git
synced 2026-05-22 18:44:42 -07:00
11 lines
167 B
Go
11 lines
167 B
Go
package tests
|
|
|
|
type Struct1 struct {
|
|
}
|
|
|
|
//easyjson:json
|
|
type Struct2 struct {
|
|
From *Struct1 `json:"from,omitempty"`
|
|
Through *Struct1 `json:"through,omitempty"`
|
|
}
|