module github.com/gobin-testrepos/simple-main@v1.0.0 -- .mod -- module github.com/gobin-testrepos/simple-main -- .info -- {"Version":"v1.0.0","Time":"2018-10-22T18:45:39Z"} -- go.mod -- module github.com/gobin-testrepos/simple-main -- main.go -- package main import "fmt" func main() { fmt.Println("I am a simple module-based main") } -- foobar -- This is an extra file that can't be imported with the Go package, but may still be used in a test.