From 6deb5f2ac09bd77b90e86fd49d1c00e510867000 Mon Sep 17 00:00:00 2001 From: Sinuhe Tellez Date: Sat, 9 Mar 2019 21:59:49 -0500 Subject: [PATCH] changing start message --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index e8b2a4d..62f33bd 100644 --- a/main.go +++ b/main.go @@ -71,7 +71,7 @@ func main() { func startValues() string { var result string - result = fmt.Sprintf("dir2opds started to listen in: %s:%s", *host, *port) + result = fmt.Sprintf("listening in: %s:%s", *host, *port) return result }