chongming/app/models/__init__.py

8 lines
157 B
Python
Raw Permalink Normal View History

2026-01-26 09:50:55 +08:00
"""
数据库模型
"""
from .item import Item
from .user import User
# 导出所有模型,供 Tortoise-ORM 自动发现
__all__ = ["Item", "User"]