Articles tagged "goimports"

5 min readBeginner

Go "imported and not used": Fix the Golang Unused Import Compile Error

Fix the Go error "imported and not used": delete the import, use the package, add _ for side effects, fix alias mistakes, or run goimports -w main.go.