I am using google grpc with a json proxy. for some reason i need to remove the omitempty tags from the struct generated in the *.pb.go files.
omitempty
if i have a pr
You could use "sed" command to remove this text from files like following
sed -i "" -e "s/,omitempty//g" ./api/proto/*.go
where args:
-i ""
-e "s/,omitempty//g"
"s/SEARCH/INSERT/g"