From ead8d7ccb76de8be920746e39bddb3eedb8de2c3 Mon Sep 17 00:00:00 2001 From: Martin Schmollinger <martin.schmollinger@reutlingen-university.de> Date: Mon, 3 May 2021 11:28:14 +0200 Subject: [PATCH] initial health function --- health/go.mod | 3 +++ health/health.go | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 health/go.mod create mode 100644 health/health.go diff --git a/health/go.mod b/health/go.mod new file mode 100644 index 0000000..7f1a652 --- /dev/null +++ b/health/go.mod @@ -0,0 +1,3 @@ +module gitlab.reutlingen-university.de/schmolli/health-go/health + +go 1.16 diff --git a/health/health.go b/health/health.go new file mode 100644 index 0000000..2615229 --- /dev/null +++ b/health/health.go @@ -0,0 +1,5 @@ +package health + +func Echo(message string) string { + return message +} -- GitLab