summaryrefslogtreecommitdiff
path: root/go/cmd/hello-world/main.go
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2017-04-12 12:58:28 +0200
committerJacob Vosmaer <jacob@gitlab.com>2017-04-12 12:58:28 +0200
commit4240f8e0f92bf77963ee030fd882050eb9f8c17d (patch)
treec38e0cedd9f4dab4e0b4f6a89c261b0646c3a63a /go/cmd/hello-world/main.go
parent015bf11a7ff902b51ad8c2e003bc340f5d056fd6 (diff)
downloadgitlab-shell-go-hello-world.tar.gz
Vendor gitaly-proto 0.5.0go-hello-world
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!")