grantforge-api / backend /endpoints /grants_loader.py
GrantForge Bot
Deploy sha-9a5957fcdef15b7e2623f8b147cda6026475aee0 — source build (no GHCR)
3a3734f
Raw
History Blame Contribute Delete
389 Bytes
"""Ładuje rozszerzenia endpointów grants (import side-effect)."""
import endpoints.grants_catalog # noqa: F401
import endpoints.grants_nabory_enhanced # noqa: F401
try:
from endpoints.grants import router as grants_router
from endpoints.grants_intelligence import router as intelligence_router
grants_router.include_router(intelligence_router)
except Exception:
pass