chongming/app/schemas/__init__.py

11 lines
187 B
Python
Raw Normal View History

2026-01-26 09:50:55 +08:00
"""
Pydantic 模型
"""
from .item import ItemCreate, ItemUpdate, ItemResponse, ItemInDB
__all__ = [
"ItemCreate",
"ItemUpdate",
"ItemResponse",
"ItemInDB"
]