18 lines
776 B
Python
18 lines
776 B
Python
|
|
"""Pydantic схемы для валидации запросов/ответов."""
|
||
|
|
|
||
|
|
from app.schemas.user import UserCreate, UserLogin, UserProfileUpdate, FreelancerProfileCreate
|
||
|
|
from app.schemas.project import ProjectCreate, ProjectUpdate, ProjectResponse
|
||
|
|
from app.schemas.proposal import ProposalCreate, ProposalResponse
|
||
|
|
from app.schemas.ai_match import AIMatchRequest, AIMatchResponse
|
||
|
|
from app.schemas.escrow import EscrowCreate, EscrowRelease
|
||
|
|
from app.schemas.auth import TokenPair
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"UserCreate", "UserLogin", "UserProfileUpdate", "FreelancerProfileCreate",
|
||
|
|
"ProjectCreate", "ProjectUpdate", "ProjectResponse",
|
||
|
|
"ProposalCreate", "ProposalResponse",
|
||
|
|
"AIMatchRequest", "AIMatchResponse",
|
||
|
|
"EscrowCreate", "EscrowRelease",
|
||
|
|
"TokenPair",
|
||
|
|
]
|