初始化

This commit is contained in:
2025-12-11 09:47:00 +08:00
commit 99933d62f8
65 changed files with 121176 additions and 0 deletions

18
core/__init__.py Normal file
View File

@@ -0,0 +1,18 @@
"""
核心模块
- 配置管理
- 日志记录
- 错误处理
"""
from .config import config, Config
from .logger import setup_logging, get_all_log_files, read_log_file
from .error_handler import ErrorHandler
__all__ = [
'config',
'Config',
'setup_logging',
'get_all_log_files',
'read_log_file',
'ErrorHandler'
]