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

Method constructor

apps/api/src/engine/keys.service.ts:12–17  ·  view source on GitHub ↗
(
    @Inject(STORE_DIR) storeDir: string,
    private readonly store: StoreService,
  )

Source from the content-addressed store, hash-verified

10 private readonly cipher: KeyCipher;
11
12 constructor(
13 @Inject(STORE_DIR) storeDir: string,
14 private readonly store: StoreService,
15 ) {
16 this.cipher = new KeyCipher(storeDir);
17 }
18
19 /** Provider key status for a user (masked — never returns secret material). */
20 listMasked(userId: string): Array<{ env: string; provider: string; set: boolean }> {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected