25 lines
478 B
Python
25 lines
478 B
Python
# services/sales/app/schemas/__init__.py
|
|
|
|
from .sales import (
|
|
SalesDataCreate,
|
|
SalesDataUpdate,
|
|
SalesDataResponse,
|
|
SalesDataQuery,
|
|
ProductCreate,
|
|
ProductUpdate,
|
|
ProductResponse,
|
|
SalesAnalytics,
|
|
ProductSalesAnalytics
|
|
)
|
|
|
|
__all__ = [
|
|
"SalesDataCreate",
|
|
"SalesDataUpdate",
|
|
"SalesDataResponse",
|
|
"SalesDataQuery",
|
|
"ProductCreate",
|
|
"ProductUpdate",
|
|
"ProductResponse",
|
|
"SalesAnalytics",
|
|
"ProductSalesAnalytics"
|
|
] |