kanban-app/backend/app/schemas/__init__.py

4 lines
180 B
Python

"""Pydantic schemas for request/response validation"""
from app.schemas.product import ProductCreateRequest, ProductResponse
__all__ = ["ProductCreateRequest", "ProductResponse"]