mirror of
https://github.com/netbirdio/netbird.git
synced 2026-05-19 15:19:55 +00:00
14 lines
333 B
Go
14 lines
333 B
Go
//go:build (!windows && !darwin && !freebsd && !(linux && !android)) || (darwin && ios)
|
|
|
|
package internal
|
|
|
|
import vncserver "github.com/netbirdio/netbird/client/vnc/server"
|
|
|
|
func newPlatformVNC() (vncserver.ScreenCapturer, vncserver.InputInjector, bool) {
|
|
return nil, nil, false
|
|
}
|
|
|
|
func vncNeedsServiceMode() bool {
|
|
return false
|
|
}
|