summaryrefslogtreecommitdiff
path: root/go/cmd/hello-world/main.go
blob: 7e34983c87328b11541179bce9ecd4ecba8f87d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package main

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!")
}