MCPcopy Create free account
hub / github.com/QuantiaAI/helm-agents / constructor

Method constructor

apps/api/src/lib/settings-store.ts:27–30  ·  view source on GitHub ↗
(storeDir: string)

Source from the content-addressed store, hash-verified

25 private cached: Settings | null = null;
26
27 constructor(storeDir: string) {
28 mkdirSync(storeDir, { recursive: true });
29 this.file = join(storeDir, FILE);
30 }
31
32 get(): Settings {
33 if (!this.cached) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected