owenkaplinsky
Clean initial commit for HuggingFace
363cda9
"""
Candidate database operations module.
This module exports all candidate-related database operations.
Each operation is in its own file for modularity.
"""
from .register_candidate import register_candidate
from .update_parsed_cv_path import update_parsed_cv_path
from .get_by_name import get_candidate_by_name
from .update_status import update_application_status
from .write_cv_results import write_cv_results_to_db
from .write_voice_results import write_voice_results_to_db
from .evaluate_cv_screening import evaluate_cv_screening_decision
__all__ = [
"register_candidate",
"update_parsed_cv_path",
"get_candidate_by_name",
"update_application_status",
"write_cv_results_to_db",
"write_voice_results_to_db",
"evaluate_cv_screening_decision",
]