返回 DeepSeek-Reasonix
main_other.go
根目录 / desktop / cmd / update-helper / main_other.go
1 //go:build !windows && !linux
2
3 package main
4
5 import (
6 "fmt"
7 "os"
8 )
9
10 func main() {
11 fmt.Fprintln(os.Stderr, "reasonix-update-helper is only used by Windows and Linux desktop builds")
12 os.Exit(2)
13 }
14
14 lines GO