From 2a27bae6e6a61b538fb3bc2eafbfc71c7386d7ca Mon Sep 17 00:00:00 2001 From: PaulRauser <74117220+PaulRauser@users.noreply.github.com> Date: Mon, 25 Mar 2024 19:03:45 +0100 Subject: [PATCH] feat add printing format --- health.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/health.go b/health.go index 2615229..1068de3 100644 --- a/health.go +++ b/health.go @@ -1,5 +1,8 @@ package health +import "fmt" + func Echo(message string) string { - return message + s := fmt.Sprintf("Hallo, %s", message) + return s } -- GitLab