Initial commit: BiliDownloader Web 版:Python 零依赖后端 + shadcn/ui 前端

This commit is contained in:
WpyQwq
2026-09-19 11:49:36 +08:00
commit f42cf11831
41 changed files with 7576 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
@echo off
rem 停止 BiliDownloader 本地服务
setlocal
for /f "tokens=5" %%a in ('netstat -ano ^| findstr ":8799" ^| findstr LISTENING') do (
taskkill /PID %%a /F >nul 2>nul
)
echo 已停止 BiliDownloader 服务。
exit /b 0