gomodifytags
gomodifytags copied to clipboard
Unable to add static tag value with comma.
Is it somehow possible to add tags with comma eg. with mapstructure
:
type Friend struct {
Person `mapstructure:",squash"`
}
I tried this but then squash is treated as the next tag token, maybe I'm missing something? :)