From e4248e5802f550795001bfd9913c0a58d3b0ef48 Mon Sep 17 00:00:00 2001 From: kober <Katrin_Stephanie.Kober@Student.Reutlingen-University.DE> Date: Sat, 12 Apr 2025 23:29:14 +0200 Subject: [PATCH] Publish package --- go.mod | 3 +++ health.go | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 go.mod create mode 100644 health.go diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..330e24d --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module gitlab.reutlingen-university.de/kober/health + +go 1.24.2 diff --git a/health.go b/health.go new file mode 100644 index 0000000..2615229 --- /dev/null +++ b/health.go @@ -0,0 +1,5 @@ +package health + +func Echo(message string) string { + return message +} -- GitLab