feat: Freelancer Match — полная продакшн версия с AI-матчингом и escrow
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
"""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",
|
||||
]
|
||||
Reference in New Issue
Block a user