AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 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