MCPcopy Create free account
hub / github.com/holaboss-ai/holaOS / constructor

Method constructor

runtime/api-server/src/memory.ts:391–395  ·  view source on GitHub ↗
(options: FilesystemMemoryServiceOptions)

Source from the content-addressed store, hash-verified

389 readonly #store: RuntimeStateStore | null;
390
391 constructor(options: FilesystemMemoryServiceOptions) {
392 this.#workspaceRoot = options.workspaceRoot;
393 this.#resolveWorkspaceDir = options.resolveWorkspaceDir ?? null;
394 this.#store = options.store ?? null;
395 }
396
397 async search(payload: Record<string, unknown>): Promise<Record<string, unknown>> {
398 const workspaceId = requiredString(payload.workspace_id, "workspace_id");

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected