You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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 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
The text was updated successfully, but these errors were encountered: