カーソル位置に対応する構造体のフィールドにJSON Tagをつける。
type hoge struct {
FooBar int
FizzBazz int `gorm:"primaryKey"`
fuga int
}
go vet -vettool="main.exe" --jsontag.offset=24 --jsontag.option=omitempty <source.go>
type hoge struct {
FooBar int
FizzBazz int `gorm:"primaryKey" json:"fizzBazz,omitempty"`
fuga int
}
--jsontag.offset=${cursor_offset}
--jsontag.option=${option}
option | 動作 |
---|---|
`json:"jsonTag"` | |
omitempty | `json:"jsonTag,omitempty"` |
ignore | `json:"-"` |