Currently, go get github.com/runZeroInc/recog-go@latest (or just go get github.com/runZeroInc/recog-go) is broken, because it points to v0.1.0, which used the old package name prior to the repo move:
go: github.com/runZeroInc/[email protected]: parsing go.mod:
module declares its path as: github.com/RumbleDiscovery/recog-go
but was required as: github.com/runZeroInc/recog-go
@latest will use semver to determine what "latest" is, and v0.1.0 > v0.0.115.
Workaround is to explicitly go get: go get github.com/runZeroInc/[email protected]
Currently,
go get github.com/runZeroInc/recog-go@latest(or justgo get github.com/runZeroInc/recog-go) is broken, because it points to v0.1.0, which used the old package name prior to the repo move:@latestwill use semver to determine what "latest" is, and v0.1.0 > v0.0.115.Workaround is to explicitly
go get:go get github.com/runZeroInc/[email protected]