Adding a go file to the module root to make 'go get' happy.

This commit is contained in:
Maurice Makaay 2019-05-21 13:03:20 +00:00
parent 478efe3e25
commit 9c0b889499
1 changed files with 7 additions and 0 deletions

7
main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Just a file to make 'go get' happy")
}