struct tag
Goのstructのフィールドに付けるやつ
例
code:example.go
type S struct {
A string tagA:"valueA"
B string tagA:"valueA,optionA" tagB:"valueB"
}