From d39cf35cc43d418b1ad5a5f14c1698d8665dfc60 Mon Sep 17 00:00:00 2001 From: Rasmus Dahlberg Date: Tue, 28 Sep 2021 17:49:28 +0200 Subject: added Go snippet to test cgit setup --- cmd/go.mod | 3 +++ cmd/main.go | 22 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 cmd/go.mod create mode 100644 cmd/main.go (limited to 'cmd') diff --git a/cmd/go.mod b/cmd/go.mod new file mode 100644 index 0000000..2649964 --- /dev/null +++ b/cmd/go.mod @@ -0,0 +1,3 @@ +module example.com + +go 1.14 diff --git a/cmd/main.go b/cmd/main.go new file mode 100644 index 0000000..3ea277e --- /dev/null +++ b/cmd/main.go @@ -0,0 +1,22 @@ +package main + +// +// $ go run . +// main.go:9:2: no required module provides package golang.sigsum.org/sigsum-log-go/pkg/types; to add it: +// go get golang.sigsum.org/sigsum-log-go/pkg/types +// $ go get golang.sigsum.org/sigsum-log-go/pkg/types +// go get: unrecognized import path "golang.sigsum.org/sigsum-log-go/pkg/types": https fetch: Get "https://golang.sigsum.org/sigsum-log-go/pkg/types?go-get=1": dial tcp: lookup golang.sigsum.org: no such host +// +// I.e., the above `go get` command should work with proper setup on our end. +// +// (If this is per-repo configuration in cgit -> need for sigsum-{lib,log}-go.) +// + +import ( + "fmt" + "golang.sigsum.org/sigsum-log-go/pkg/types" +) + +func main() { + fmt.Printf("types.HashSize: %v\n", types.HashSize) +} -- cgit v1.2.3