reserve backend-mode text

This commit is contained in:
Michael Quigley 2023-05-24 11:36:06 -04:00
parent cf9514a0e1
commit 22cc06eb74
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -33,7 +33,7 @@ func newReserveCommand() *reserveCommand {
command := &reserveCommand{cmd: cmd}
cmd.Flags().StringArrayVar(&command.basicAuth, "basic-auth", []string{}, "Basic authentication users (<username:password>,...)")
cmd.Flags().StringArrayVar(&command.frontendSelection, "frontends", []string{"public"}, "Selected frontends to use for the share")
cmd.Flags().StringVar(&command.backendMode, "backend-mode", "proxy", "The backend mode {proxy, web}")
cmd.Flags().StringVar(&command.backendMode, "backend-mode", "proxy", "The backend mode {proxy, web, <tcpTunnel, udpTunnel>}")
cmd.Run = command.run
return command
}