//go:build !windows package main import ( "fmt" "os" ) func main() { fmt.Fprintln(os.Stderr, "Navis GUI is Windows-only (WebView2). Use vpnclient CLI on this platform.") os.Exit(1) }