chongming/app/models/__init__.py
2026-01-26 09:50:55 +08:00

8 lines
157 B
Python

"""
数据库模型
"""
from .item import Item
from .user import User
# 导出所有模型,供 Tortoise-ORM 自动发现
__all__ = ["Item", "User"]