From a7dfb8c49387c8f4ea18b55511f927625bf01fb8 Mon Sep 17 00:00:00 2001 From: PaulRauser <74117220+PaulRauser@users.noreply.github.com> Date: Mon, 25 Mar 2024 18:55:31 +0100 Subject: [PATCH] initial commit --- 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..ac39929 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module gitlab.reutlingen-university.de/rapaub24/health.git + +go 1.22.1 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