Files
netbird/client/ui/services/cursor_other.go
Zoltán Papp f9acc6a2e9 [client] Exclude UI fallback stubs from FreeBSD build
The _other.go fallback stubs in client/ui and client/ui/services matched
FreeBSD, dragging the Wails-importing services package into the FreeBSD
build and failing it (Wails v3 has no FreeBSD port). Add !freebsd (plus
!android/!ios/!js) to align them with the rest of these packages so the
whole UI is excluded on FreeBSD.
2026-06-17 17:46:54 +02:00

10 lines
262 B
Go

//go:build !darwin && !windows && !linux && !freebsd && !android && !ios && !js
package services
import "github.com/wailsapp/wails/v3/pkg/application"
func getCursorPosition(_ *application.App) (application.Point, bool) {
return application.Point{}, false
}