feat: 整合开发历史

This commit is contained in:
2026-01-04 19:38:47 +08:00
parent 0965123c1d
commit bbdeecb89b
25 changed files with 2199 additions and 506 deletions

9
core/exceptions.py Normal file
View File

@@ -0,0 +1,9 @@
"""
自定义异常模块
"""
class SyncHandlerError(Exception):
"""
当尝试注册同步函数作为异步事件处理器时抛出此异常。
"""
pass