Merge branch 'feature/moshui20260330-schedule-job' into bot_manager

This commit is contained in:
朱潮 2026-03-31 10:06:15 +08:00
commit 7ad51c95c0

View File

@ -47,7 +47,7 @@ TIMEZONE_OFFSET_MAP = {
def get_tasks_dir(bot_id: str, user_id: str) -> Path:
"""获取用户任务目录路径"""
return "users" / user_id
return Path("users") / user_id
def get_tasks_file(bot_id: str, user_id: str) -> Path: