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/recog-go@v0.1.0: 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/recog-go@v0.0.115
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/recog-go@v0.0.115