新版可用

This commit is contained in:
2025-11-27 18:40:08 +08:00
parent 46de43ce72
commit 4fef65bd93
26 changed files with 39568 additions and 504 deletions

26
backend/api/build.bat Normal file
View File

@@ -0,0 +1,26 @@
@echo off
chcp 65001 >nul
echo ===============================================
echo 📦 编译 API 服务器
echo ===============================================
echo.
echo 🔨 正在编译 api_server.exe...
go build -o api_server.exe server.go
if %errorlevel% neq 0 (
echo.
echo ❌ 编译失败!
echo.
pause
exit /b 1
)
echo.
echo ✅ 编译成功!
echo 📁 输出文件: api_server.exe
echo.
echo ===============================================
echo 编译完成
echo ===============================================
pause