MCPcopy Create free account
hub / github.com/CodeClash-ai/CodeClash / __init__

Method __init__

codeclash/viewer/app.py:109–113  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

107 """
108
109 def __init__(self):
110 self._cache: dict[str, CacheEntry] = {}
111 self._cache_lock = threading.Lock()
112 self._compute_locks: dict[str, threading.Lock] = {}
113 self._compute_locks_lock = threading.Lock()
114
115 def get(self, key: str, timeout_seconds: int | None = None) -> Any | None:
116 """Get cached value if it exists and hasn't expired"""

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected