"""Aggregate router mounted under the configured API prefix.""" from fastapi import APIRouter from app.api.routes import health, papers, template_field_library, templates api_router = APIRouter() api_router.include_router(health.router) api_router.include_router(papers.router) api_router.include_router(template_field_library.router) api_router.include_router(templates.router)