We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Module path is inconsistent with go import path. GO111MODULE=on, as README said, run go get github.com/kylesliu/gin_metrics:
go get github.com/kylesliu/gin_metrics
go: downloading github.com/kylesliu/gin_metrics v0.0.8 go: github.com/kylesliu/gin_metrics upgrade => v0.0.8 go get: github.com/kylesliu/[email protected]: parsing go.mod: module declares its path as: github.com/kylesliu/gin-metrics but was required as: github.com/kylesliu/gin_metrics
module github.com/kylesliu/gin_metrics go 1.12 require ( … )
go get github.com/kylesliu/gin-metrics
The text was updated successfully, but these errors were encountered:
@kylesliu Could you help me review this issue? Thx :p
Sorry, something went wrong.
No branches or pull requests
Background
Module path is inconsistent with go import path.
GO111MODULE=on, as README said, run
go get github.com/kylesliu/gin_metrics
:Solution
Fix the module path:
go get github.com/kylesliu/gin-metrics
.The text was updated successfully, but these errors were encountered: