xxy 43f3e0b746 Initial commit
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-05 18:41:06 +08:00

8 lines
256 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.

"""database package连接、模型与依赖注入。"""
from database.core import SessionLocal, engine
from database.dependencies import get_db
from database.init_db import init_database
__all__ = ["engine", "SessionLocal", "get_db", "init_database"]