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

5 lines
180 B
Python
Raw Normal View History

2026-02-24 14:17:36 +00:00
"""Pydantic schemas for request/response validation"""
from app.schemas.product import ProductCreateRequest, ProductResponse
2026-02-24 16:19:15 +00:00
__all__ = ["ProductCreateRequest", "ProductResponse"]