Add AutoRobot directory with Windows line endings

This commit is contained in:
2025-10-20 09:04:09 +08:00
parent a7ade87dde
commit d663118a73
124 changed files with 22719 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
@echo off
cls
REM build.bat - 编译Go项目
setlocal
set GOOS=windows
set GOARCH=amd64
echo 正在编译...
go build -o Robot.exe main.go
if %errorlevel% neq 0 (
echo 编译失败!
exit /b %errorlevel%
)
echo 编译成功,生成 Robot.exe
exit /b 0