Revert a go get
(in Go programming): If you want to undo a go get
in Go:
- Identify the package you added using
go get
. - Remove the package import or module reference from your code or
go.mod
file. - Run
go mod tidy
to clean up unused dependencies.
No comments:
Post a Comment