"""FastAPI route modules.""" from app.routes.health import router as health_router from app.routes.tasks import router as tasks_router from app.routes.tenants import router as tenants_router from app.routes.agents import router as agents_router from app.routes.playbooks import router as playbooks_router from app.routes.env import router as env_router from app.routes.files import router as files_router from app.routes.registration_tokens import router as registration_tokens_router __all__ = [ "health_router", "tenants_router", "tasks_router", "agents_router", "playbooks_router", "env_router", "files_router", "registration_tokens_router", ]