Update printHelp()
This commit is contained in:
parent
e63708388b
commit
f20dc147cd
8
main.go
8
main.go
@ -70,11 +70,11 @@ func (conn readOnlyConn) SetWriteDeadline(t time.Time) error { return nil }
|
|||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
versionFlag := flag.Bool("version", false, "Display the version of the server")
|
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")
|
helpFlag := flag.Bool("help", false, "Display help message")
|
||||||
helpFlagShort := flag.Bool("h", false, "Display help message (short)")
|
helpFlagShort := flag.Bool("h", false, "Display help message")
|
||||||
bindAddr := flag.String("bind", "localhost:8443", "The address to bind the HTTPS server")
|
bindAddr := flag.String("bind", "localhost:8443", "The address to bind the server")
|
||||||
bindAddrShort := flag.String("b", "localhost:8443", "The address to bind the HTTPS server (short)")
|
bindAddrShort := flag.String("b", "localhost:8443", "The address to bind the server")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
_, err := readVersion()
|
_, err := readVersion()
|
||||||
|
Loading…
Reference in New Issue
Block a user