mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-19 23:11:29 +02:00
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.
10 lines
262 B
Go
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
|
|
}
|