2025-09-11 18:34:03 +08:00

11 lines
329 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# tools/database/__init__.py
"""
数据库工具模块初始化文件
"""
# 从mongo.py导入常用的类或函数方便其他模块导入
try:
from .mongo import client, mainDB
__all__ = ['client', 'mainDB']
except ImportError:
# 如果mongo模块无法导入不抛出异常保持包的基本功能
pass