From 4a4b60ce540395fc06db2132511065ba5cc4a59e Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 29 Dec 2024 18:29:04 +0100 Subject: [PATCH] Update main output message to reflect server name and add project URL --- main.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index cab0dc9..d524839 100644 --- a/main.go +++ b/main.go @@ -63,7 +63,10 @@ func initFlags() { } func main() { - fmt.Println("Starting iot-ephemeral-value-store", Version, "Build:", BuildTime, "Commit:", Commit) + fmt.Println("Starting iot-ephemeral-value-store-server", Version, "Build:", BuildTime, "Commit:", Commit) + fmt.Println("https://github.com/dhcgn/iot-ephemeral-value-store") + fmt.Println("") + initFlags() persistDuration, err := time.ParseDuration(persistDurationString)