From 9c0b889499657151f9bb581e1e8fa83064a7f582 Mon Sep 17 00:00:00 2001 From: Maurice Makaay Date: Tue, 21 May 2019 13:03:20 +0000 Subject: [PATCH] Adding a go file to the module root to make 'go get' happy. --- main.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 main.go diff --git a/main.go b/main.go new file mode 100644 index 0000000..fd0ab06 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Just a file to make 'go get' happy") +}