skip to Main Content

Redis – Why cannot import library from go get?

I downloaded go-redis client using go mod init github.com/my/repo go get github.com/go-redis/redis/v8 But it showed cannot find package "go.opentelemetry.io/otel/api/trace". So I deleted go-redis from ${GOPATH}/src/github.com and then tried running it again go get github.com/go-redis/redis/v8 But it does nothing. Doesn't show…

VIEW QUESTION
Back To Top
Search