From f449ac8d510181c7e2cfe1c90fbf440d67ce28af Mon Sep 17 00:00:00 2001 From: romano <romano> Date: Mon, 28 Mar 2022 13:17:59 +0200 Subject: [PATCH] initial commit --- health/echo.go | 5 +++++ health/go.mod | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 health/echo.go create mode 100644 health/go.mod diff --git a/health/echo.go b/health/echo.go new file mode 100644 index 0000000..2615229 --- /dev/null +++ b/health/echo.go @@ -0,0 +1,5 @@ +package health + +func Echo(message string) string { + return message +} diff --git a/health/go.mod b/health/go.mod new file mode 100644 index 0000000..e8f340d --- /dev/null +++ b/health/go.mod @@ -0,0 +1,3 @@ +module gitlab.reutlingen-university.de/romano/go-health + +go 1.18 -- GitLab