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