MCPcopy Create free account
hub / github.com/code100x/daily-code / constructor

Method constructor

apps/web/lib/cache/in-memory-cache.ts:12–14  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

10 private static instance: InMemoryCache;
11
12 private constructor() {
13 this.inMemoryDb = new Map<string, ICacheEntry>();
14 }
15
16 static getInstance() {
17 if (!this.instance) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected