feat: 添加项目规则、环境配置示例及开发文档

This commit is contained in:
锦麟 王
2026-02-04 18:49:38 +08:00
commit df76882178
88 changed files with 13150 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
"""核心模块
提供配置管理、日志系统、数据库等基础功能
"""
from minenasai.core.config import Settings, get_settings, load_config, reset_settings
from minenasai.core.logging import (
AuditLogger,
get_audit_logger,
get_logger,
setup_logging,
)
__all__ = [
"Settings",
"get_settings",
"load_config",
"reset_settings",
"setup_logging",
"get_logger",
"AuditLogger",
"get_audit_logger",
]