先行版

This commit is contained in:
lzx
2025-11-26 16:16:17 +08:00
parent 789be70a53
commit a000c18c29
11 changed files with 796 additions and 0 deletions

10
test/test.bat Normal file
View File

@@ -0,0 +1,10 @@
@echo off
cd /d %~dp0
go build -o .\client.exe test.go
if %errorlevel% equ 0 (
echo 编译成功!可执行文件位于: .\client.exe
) else (
echo 编译失败!
exit /b %errorlevel%
)