mirror of
https://github.com/netbirdio/netbird.git
synced 2026-05-19 23:29:56 +00:00
16 lines
344 B
Go
16 lines
344 B
Go
//go:build js || ios || android
|
|
|
|
package internal
|
|
|
|
import (
|
|
mgmProto "github.com/netbirdio/netbird/shared/management/proto"
|
|
)
|
|
|
|
type vncServer interface{}
|
|
|
|
func (e *Engine) updateVNC(_ *mgmProto.SSHConfig) error { return nil }
|
|
|
|
func (e *Engine) updateVNCServerAuth(_ *mgmProto.VNCAuth) {}
|
|
|
|
func (e *Engine) stopVNCServer() error { return nil }
|