24 lines
543 B
Python
24 lines
543 B
Python
from app.schemas.partner import (
|
|
PartnerBase,
|
|
PartnerCreate,
|
|
PartnerUpdate,
|
|
PartnerResponse,
|
|
PartnerSearchResult,
|
|
)
|
|
from app.schemas.crm import LeadCreate, LeadResponse, LeadSearchResult
|
|
from app.schemas.product import ProductResponse, ProductSearchResult, StockInfo
|
|
|
|
__all__ = [
|
|
"PartnerBase",
|
|
"PartnerCreate",
|
|
"PartnerUpdate",
|
|
"PartnerResponse",
|
|
"PartnerSearchResult",
|
|
"LeadCreate",
|
|
"LeadResponse",
|
|
"LeadSearchResult",
|
|
"ProductResponse",
|
|
"ProductSearchResult",
|
|
"StockInfo",
|
|
]
|