From 03b0a48dc3c187e9e8e2b8523fa4f8b24feeba8d2e15e5426c6a87538367e02d Mon Sep 17 00:00:00 2001 From: brent saner Date: Tue, 9 Jul 2024 23:30:48 -0400 Subject: [PATCH] v1.0.0 This repository only exists to serve as a testing repository using SHA256 commits. --- funcs.go | 8 ++++++++ go.mod | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 funcs.go create mode 100644 go.mod 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