MCPcopy Create free account
hub / github.com/CheMiguel23/MemoryMesh / constructor

Method constructor

src/application/managers/GraphManager.ts:23–27  ·  view source on GitHub ↗
(storage?: IStorage)

Source from the content-addressed store, hash-verified

21 private readonly graphOperations: GraphOperations;
22
23 constructor(storage?: IStorage) {
24 super(storage);
25 const {nodeManager, edgeManager, metadataManager} = this.createManagers();
26 this.graphOperations = new GraphOperations(nodeManager, edgeManager, metadataManager);
27 }
28
29 // Node operations
30 async addNodes(nodes: Node[]): Promise<Node[]> {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected