From a29f58ac80c7b8b5956d257a00e208638bb186dd Mon Sep 17 00:00:00 2001 From: Martin Schmollinger <martin.schmollinger@reutlingen-university.de> Date: Mon, 20 Mar 2023 16:15:59 +0100 Subject: [PATCH] Added Echo function --- health.go | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 health.go 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