Files
navi/cmd/vpnapp/main_other.go
T

15 lines
274 B
Go

//go:build !windows && !darwin
package main
import (
"fmt"
"os"
)
func main() {
fmt.Fprintln(os.Stderr, "Navis GUI supports Windows (WebView2) and macOS.")
fmt.Fprintln(os.Stderr, "On this OS use the CLI: ./Navis connect | install-core | check-update")
os.Exit(1)
}