Shivam311's picture
feat: CodeAtlas Enterprise - IBM Bob Engineering Intelligence Platform
3a7842d
Raw
History Blame Contribute Delete
347 Bytes
"""Simple in-memory repository cache for hackathon use."""
from __future__ import annotations
from typing import Any, Dict
repo_cache: Dict[str, Dict[str, Any]] = {}
analysis_cache: Dict[str, Dict[str, Any]] = {}
metrics_cache: Dict[str, Dict[str, Any]] = {}
docs_cache: Dict[str, Dict[str, Any]] = {}
job_cache: Dict[str, Dict[str, Any]] = {}