Fix go: go.mod file not found in current directory or any parent directory; see ‘go help modules’
- First initialize
go mod.
go mod init <file.go>
- Install modules
go mod tidy
And you are done.
Reference: StackOverflow
go mod.go mod init <file.go>
go mod tidy
And you are done.
Reference: StackOverflow