mirror of
https://github.com/netbirdio/netbird.git
synced 2026-05-18 14:49:57 +00: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")
|
|
}
|