mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-11 09:19:09 +02:00
10 lines
223 B
Go
10 lines
223 B
Go
package cmd
|
|
|
|
const serverVNCAllowedFlag = "allow-server-vnc"
|
|
|
|
var serverVNCAllowed bool
|
|
|
|
func init() {
|
|
upCmd.PersistentFlags().BoolVar(&serverVNCAllowed, serverVNCAllowedFlag, false, "Allow embedded VNC server on peer")
|
|
}
|