部分重构

This commit is contained in:
2026-03-31 20:06:53 +08:00
parent 6d79836682
commit 498cc78dce
43 changed files with 6049 additions and 131 deletions
+16
View File
@@ -0,0 +1,16 @@
@echo off
echo Starting OPS backend server (refactored version)...
REM 检查前端dist目录是否存在
if not exist "./dist" (
echo WARNING: Frontend build not found at ./dist
echo Please build frontend first or copy build files to ./dist
echo.
)
REM 运行新的重构版本
echo Running new refactored backend...
echo.
go run ./cmd/ops-server/main.go
pause