30 lines
566 B
Python
30 lines
566 B
Python
from app.schemas.product import (
|
|
ProductBase,
|
|
ProductCreate,
|
|
ProductUpdate,
|
|
ProductResponse,
|
|
CategoryInProduct,
|
|
)
|
|
from app.schemas.category import (
|
|
CategoryBase,
|
|
CategoryCreate,
|
|
CategoryUpdate,
|
|
CategoryResponse,
|
|
CategoryWithProducts,
|
|
ProductInCategory,
|
|
)
|
|
|
|
__all__ = [
|
|
"ProductBase",
|
|
"ProductCreate",
|
|
"ProductUpdate",
|
|
"ProductResponse",
|
|
"CategoryInProduct",
|
|
"CategoryBase",
|
|
"CategoryCreate",
|
|
"CategoryUpdate",
|
|
"CategoryResponse",
|
|
"CategoryWithProducts",
|
|
"ProductInCategory",
|
|
]
|