feat(ws_pool): 新增 WebSocket 连接池实现 perf(json): 使用 orjson 替代标准 json 库提升性能 style: 清理未使用的导入和冗余代码 docs: 更新架构文档和开发规范 test: 添加 WebSocket 连接池测试用例 fix(plugins): 修复自动审批插件 API 调用参数格式
38 lines
715 B
Python
38 lines
715 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
工具函数包
|
|
"""
|
|
|
|
# 导出核心工具
|
|
from .logger import logger
|
|
from .exceptions import *
|
|
from .singleton import singleton
|
|
from .executor import run_in_thread_pool, initialize_executor
|
|
from .performance import (
|
|
timeit,
|
|
profile,
|
|
aprofile,
|
|
memory_profile,
|
|
memory_profile_decorator,
|
|
performance_monitor,
|
|
PerformanceStats,
|
|
performance_stats,
|
|
global_stats
|
|
)
|
|
|
|
__all__ = [
|
|
'logger',
|
|
'timeit',
|
|
'profile',
|
|
'aprofile',
|
|
'memory_profile',
|
|
'memory_profile_decorator',
|
|
'performance_monitor',
|
|
'PerformanceStats',
|
|
'performance_stats',
|
|
'global_stats',
|
|
'run_in_thread_pool',
|
|
'initialize_executor',
|
|
'singleton'
|
|
]
|