4 lines
180 B
Python
4 lines
180 B
Python
"""Pydantic schemas for request/response validation"""
|
|
from app.schemas.product import ProductCreateRequest, ProductResponse
|
|
|
|
__all__ = ["ProductCreateRequest", "ProductResponse"]
|