kanban-app/backend/app/schemas/__init__.py
2026-02-24 17:17:36 +03:00

4 lines
No EOL
179 B
Python

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