feat: Freelancer Match — полная продакшн версия с AI-матчингом и escrow
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
"""Модели SQLAlchemy."""
|
||||
|
||||
from app.models.user import User, FreelancerProfile, ClientProfile
|
||||
from app.models.project import Project
|
||||
from app.models.proposal import Proposal
|
||||
from app.models.ai_match import AIMatch
|
||||
from app.models.escrow import EscrowTransaction
|
||||
from app.models.work_session import WorkSession
|
||||
from app.models.review import Review
|
||||
from app.models.message import Message
|
||||
from app.models.notification import Notification
|
||||
|
||||
__all__ = [
|
||||
"User", "FreelancerProfile", "ClientProfile",
|
||||
"Project", "Proposal", "AIMatch",
|
||||
"EscrowTransaction", "WorkSession",
|
||||
"Review", "Message", "Notification",
|
||||
]
|
||||
Reference in New Issue
Block a user