Error:
When I ran go get, I get the following error:
reading .../go.mod at revision v1.2.3: unknown revision v1.2.3
Fix:
run the following command:
go clean -modcache
and then run:
go get ./... (this is a command to download all packages/dependencies in one go)
Comments
Post a Comment