1# Module paths that are domain roots should resolve. 2# (example.com not example.com/something) 3 4env GO111MODULE=on 5go get 6 7-- go.mod -- 8module x 9 10-- x.go -- 11package x 12import _ "example.com"
View as plain text