diff options
author | Jacob Vosmaer <jacob@gitlab.com> | 2017-04-12 12:58:28 +0200 |
---|---|---|
committer | Jacob Vosmaer <jacob@gitlab.com> | 2017-04-12 12:58:28 +0200 |
commit | 4240f8e0f92bf77963ee030fd882050eb9f8c17d (patch) | |
tree | c38e0cedd9f4dab4e0b4f6a89c261b0646c3a63a /go/cmd/hello-world/main.go | |
parent | 015bf11a7ff902b51ad8c2e003bc340f5d056fd6 (diff) | |
download | gitlab-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.go | 7 |
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!") |