When generating go code, we should utilize what go provides out of the box, go generate which looks to be unused. This is idiomatic to go
The benefit of using go generate is you can just call it from the root of the project or wherever and it'll generate the code rather than a specific scripting file
https://go.dev/blog/generate
When generating go code, we should utilize what go provides out of the box,
go generatewhich looks to be unused. This is idiomatic to goThe benefit of using go generate is you can just call it from the root of the project or wherever and it'll generate the code rather than a specific scripting file
https://go.dev/blog/generate