mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-19 04:59:56 +00:00
10 lines
223 B
Go
10 lines
223 B
Go
//go:build !darwin && !windows && !linux
|
|
|
|
package services
|
|
|
|
import "github.com/wailsapp/wails/v3/pkg/application"
|
|
|
|
func getCursorPosition(_ *application.App) (application.Point, bool) {
|
|
return application.Point{}, false
|
|
}
|