gomodifytags

Go tool to modify struct field tags easily

brewmacoslinux
Try with needOr install directly
Source

About

Go tool to modify struct field tags

Commands

gomodifytags

Examples

Add json tags to all struct fields$ gomodifytags -file main.go -struct User -add-tags json
Add multiple tags with options to specific fields$ gomodifytags -file main.go -struct Person -add-tags json,xml -transform camelcase
Remove tags from struct fields$ gomodifytags -file main.go -struct Config -remove-tags yaml