summaryrefslogtreecommitdiff
path: root/go/cmd/hello-world/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/cmd/hello-world/main.go')
-rw-r--r--go/cmd/hello-world/main.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/go/cmd/hello-world/main.go b/go/cmd/hello-world/main.go
index f7b60bd..7e34983 100644
--- a/go/cmd/hello-world/main.go
+++ b/go/cmd/hello-world/main.go
@@ -1,6 +1,11 @@
package main
-import "fmt"
+import (
+ "fmt"
+
+ // Example import, just to see if govendor is working for us
+ _ "gitlab.com/gitlab-org/gitaly-proto/go"
+)
func main() {
fmt.Println("Hello, world!")