Update printHelp()

This commit is contained in:
Reza Behzadan 2024-03-03 08:38:31 +03:30
parent e63708388b
commit f20dc147cd

View File

@ -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()