aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/help.go
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2025-07-23 17:27:23 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2025-07-23 17:27:23 -0400
commit3b84e41e8fec9ecf5c9f4885c8908cf94b8999f5 (patch)
tree98a09e3ec84ab54ca5533034bdb891f8366ddfc0 /cmd/help.go
parent325b23a109527a8ff385889e47b5ea8a102e24db (diff)
Implement basic server over unix datagram
Diffstat (limited to 'cmd/help.go')
-rw-r--r--cmd/help.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/help.go b/cmd/help.go
index e57ce2f..9d59f53 100644
--- a/cmd/help.go
+++ b/cmd/help.go
@@ -104,7 +104,7 @@ func Help(topic string, w io.Writer) {
shell.PrintHelp(w)
case "server":
SetupServerFlags(nil, fs, &ServerFlags{})
- fmt.Fprintf(w, "%s [global-flags] server [server-flags]", os.Args[0])
+ fmt.Fprintf(w, "%s [global-flags] server [server-flags]\n", os.Args[0])
fmt.Fprintln(w, "Run a server to execute queries over HTTP or a unix domain socket")
fmt.Fprintln(w, "HTTP Server:")
fmt.Fprintln(w, " To execute a query POST it in the request body to /search")