I usually just have all private Go code in one mono-repo project. Skipping private go libraries all together 🙂 Actually, I do this kind of thing even for other languages libraries too.
go mod vendor will bloat your git repository. it's mostly a legacy command from the Before Go Module era and you should avoid it unless you _REALLY_ need it
I usually just have all private Go code in one mono-repo project. Skipping private go libraries all together 🙂
Actually, I do this kind of thing even for other languages libraries too.
go mod vendor will bloat your git repository. it's mostly a legacy command from the Before Go Module era and you should avoid it unless you _REALLY_ need it
"Unless you REALLY Need it"
You can't deploy Go cloud functions (GCP) from a PRIVATE module without vendoring.
Really?
not hell