feat: 在构造待整理文件列表时引入过滤逻辑以简化后续处理

This commit is contained in:
景大侠
2026-02-06 17:05:12 +08:00
parent 32afe6445f
commit 40395b2999
3 changed files with 99 additions and 49 deletions

View File

@@ -29,3 +29,10 @@ class RateLimitExceededException(LimitException):
这个异常通常用于本地限流逻辑(例如 RateLimiter当系统检测到函数调用频率过高时触发限流并抛出该异常。
"""
pass
class OperationInterrupted(KeyboardInterrupt):
"""
用于表示操作被中断
"""
pass