just started with go, got stuck on a very simple application (from here https://golang.org/doc/tutorial/call-module-code) when I try to compile the hello.go:
...
hello.go:6:5: cannot find module providing package example.com/greeting
...
The env is set like this (Ubuntu 20.04)
root@591c0587972e:~/proj/test/go.test# go env | grep GOPA
GOPATH="/root/go:/root/proj/test/go.test"
root@591c0587972e:~/proj/test/go.test# go version
go version go1.15.3 linux/amd64
the source code https://github.com/myxit/golang-wtf
Please help, what is the problem with setup?