diff --git a/funcs.go b/funcs.go new file mode 100644 index 0000000..28c1273 --- /dev/null +++ b/funcs.go @@ -0,0 +1,8 @@ +package sha256repo + +func TestFunc() (out string) { + + out = "This is an example repository using SHA256 commit hashes. See https://github.com/golang/go/issues/68359 for details." + + return +} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..5fd7705 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module r00t2.io/sha256repo + +go 1.22.4