MCPcopy Create free account
hub / github.com/6174/comflowyspace / constructor

Method constructor

packages/common/storage/document-database.ts:12–14  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

10export class JSONDBDatabase {
11 documents: JSONDBClient<PersistedFullWorkflow>
12 constructor() {
13 this.documents = new JSONDBClient<PersistedFullWorkflow>("workflows");
14 }
15
16 async getDocs(): Promise<PersistedFullWorkflow[]> {
17 const ret = await this.documents.getDocuments();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected