mirror of
https://github.com/netbirdio/netbird.git
synced 2026-05-12 03:39:55 +00:00
Removes the legacy fyne-based client/ui implementation and renames the Wails replacement (client/ui-wails) to take its place at client/ui. Go imports, frontend bindings, CI workflows, goreleaser configs and the windows .syso icon path are updated to follow the rename.
19 lines
349 B
Go
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() {}
|