grant-radar / src /api /__init__.py
Riley
feat: Major system enhancements - GPT-5 support, monitoring, translation, and optimizations
057c21e
Raw
History Blame Contribute Delete
401 Bytes
"""API module for grant analyst."""
from src.api.feedback import router as feedback_router
from src.api.health import router as health_router
from src.api.qa import router as qa_router
from src.api.websocket import router as websocket_router
from src.api.translate import router as translate_router
__all__ = ["feedback_router", "health_router", "qa_router", "websocket_router", "translate_router"]