首次提交: OnebotCatalog 项目代码与文档(含 NX 按需生成服务二期、后台、一键启动)

This commit is contained in:
wangruiguo
2026-09-03 17:55:45 +08:00
commit fafa86d3a6
241 changed files with 78656 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
@echo off
setlocal
cd /d "%~dp0"
echo ==== clear queued jobs in jobs dir ====
echo files to delete:
dir /b "jobs\job_*.json" 2>nul
dir /b "jobs\job_*.running" 2>nul
dir /b "jobs\job_*.done" 2>nul
dir /b "jobs\job_*.prog" 2>nul
dir /b "jobs\job_*.tok" 2>nul
del /Q "jobs\job_*.json" 2>nul
del /Q "jobs\job_*.running" 2>nul
del /Q "jobs\job_*.done" 2>nul
del /Q "jobs\job_*.prog" 2>nul
del /Q "jobs\job_*.tok" 2>nul
echo.
echo ==== done. remaining in jobs dir: ====
dir /b "jobs" 2>nul
echo.
echo Note: output dir is NOT cleared. Re-request same code will hit cached files.
endlocal