ilyass yani
Deploiement backend dans HF Spaces
9df97a2
Raw
History Blame Contribute Delete
539 Bytes
from app.core.database import Base
from app.models.models import (
User,
Candidate,
Skill,
CandidateSkill,
Experience,
Education,
JobCriteria,
CriteriaSkill,
MatchResult,
Favorite,
UserRole,
SkillCategory,
ProficiencyLevel,
)
__all__ = [
"Base",
"User",
"Candidate",
"Skill",
"CandidateSkill",
"Experience",
"Education",
"JobCriteria",
"CriteriaSkill",
"MatchResult",
"Favorite",
"UserRole",
"SkillCategory",
"ProficiencyLevel",
]