feat: Freelancer Match — AI-матчинг, escrow, milestones, portfolio, skill-tests, verification
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
"""Модели 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.milestone import Milestone
|
||||
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
|
||||
from app.models.portfolio import PortfolioItem
|
||||
from app.models.skill_test import SkillTest, SkillTestResult
|
||||
from app.models.verification import Verification
|
||||
|
||||
__all__ = [
|
||||
"User", "FreelancerProfile", "ClientProfile",
|
||||
"Project", "Proposal", "AIMatch",
|
||||
"EscrowTransaction", "Milestone", "WorkSession",
|
||||
"Review", "Message", "Notification",
|
||||
"PortfolioItem", "SkillTest", "SkillTestResult",
|
||||
"Verification",
|
||||
]
|
||||
Reference in New Issue
Block a user