first commit

This commit is contained in:
ytc1012
2026-02-04 16:11:55 +08:00
commit 0f3ee050dc
165 changed files with 25795 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
"""数据模型包。"""
from app.db.database import Base # noqa: F401
# 导入所有模型以确保它们注册到Base.metadata
from app.models.user import User # noqa: F401
from app.models.room import GatheringRoom, RoomParticipant # noqa: F401
from app.models.message import ChatMessage, VenueVote # noqa: F401