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>
[–more–]
- Install modules
go mod tidy
And you are done.
Reference: StackOverflow
go mod
.go mod init <file.go>
[–more–]
go mod tidy
And you are done.
Reference: StackOverflow