Spaces:
Sleeping
Sleeping
| """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]] = {} | |