Files
netbird/client/uiwails/xembed_host_other.go
Zoltán Papp 04a982263d Wails UI
2026-03-02 15:59:09 +01:00

19 lines
349 B
Go

//go:build !linux || (linux && 386)
package main
import (
"errors"
"github.com/godbus/dbus/v5"
)
type xembedHost struct{}
func newXembedHost(_ *dbus.Conn, _ string, _ dbus.ObjectPath) (*xembedHost, error) {
return nil, errors.New("XEmbed tray not supported on this platform")
}
func (h *xembedHost) run() {}
func (h *xembedHost) stop() {}