Files
srbhr--resume-matcher/apps/backend/app/routers/__init__.py
T
wehub-resource-sync 5bdf4cc89a
Publish Docker Image / publish (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:39:36 +08:00

20 lines
615 B
Python

"""API routers."""
from app.routers.applications import router as applications_router
from app.routers.config import router as config_router
from app.routers.enrichment import router as enrichment_router
from app.routers.health import router as health_router
from app.routers.jobs import router as jobs_router
from app.routers.resume_wizard import router as resume_wizard_router
from app.routers.resumes import router as resumes_router
__all__ = [
"resumes_router",
"jobs_router",
"config_router",
"health_router",
"enrichment_router",
"applications_router",
"resume_wizard_router",
]