From f20dc147cd1ba6f01f43fa48bb5df09b2b2b05db Mon Sep 17 00:00:00 2001 From: Reza Behzadan Date: Sun, 3 Mar 2024 08:38:31 +0330 Subject: [PATCH] Update printHelp() --- main.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.go b/main.go index 53d9b6f..82b9b31 100644 --- a/main.go +++ b/main.go @@ -70,11 +70,11 @@ func (conn readOnlyConn) SetWriteDeadline(t time.Time) error { return nil } func main() { versionFlag := flag.Bool("version", false, "Display the version of the server") - versionFlagShort := flag.Bool("v", false, "Display the version (short)") + versionFlagShort := flag.Bool("v", false, "Display the version") helpFlag := flag.Bool("help", false, "Display help message") - helpFlagShort := flag.Bool("h", false, "Display help message (short)") - bindAddr := flag.String("bind", "localhost:8443", "The address to bind the HTTPS server") - bindAddrShort := flag.String("b", "localhost:8443", "The address to bind the HTTPS server (short)") + helpFlagShort := flag.Bool("h", false, "Display help message") + bindAddr := flag.String("bind", "localhost:8443", "The address to bind the server") + bindAddrShort := flag.String("b", "localhost:8443", "The address to bind the server") flag.Parse() _, err := readVersion()