delete: 移除不再使用的配置文件和开发依赖,清理代码库

This commit is contained in:
2026-04-19 16:28:37 +08:00
parent 8e99063072
commit 5f88b1f847
8 changed files with 21 additions and 637 deletions

View File

@@ -178,7 +178,7 @@ class MessageHandler(BaseHandler):
await bot.send(event, message_template.format(permission_name=permission_name))
return
# 在执行指令前,原子化地增加指令调用次数
# 在执行指令前,增加指令调用次数
from ..managers.redis_manager import redis_manager
from ..utils.logger import logger
try:

View File

@@ -216,4 +216,4 @@ async def download_to_local(url: str, timeout: int = 60, headers: Optional[Dict[
if not file_id:
return None
return f"http://127.0.0.1:{server.port}/download?id={file_id}"
return f"http://{server.host}:{server.port}/download?id={file_id}"