mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-10 09:54:01 +00:00
12 lines
379 B
TypeScript
12 lines
379 B
TypeScript
/**
|
|
* Core-facing facade for memory backend storage config resolution. Keep this
|
|
* path stable while the shared SDK package owns provider status semantics.
|
|
*/
|
|
export {
|
|
MEMORY_INDEX_CHUNKS_TABLE,
|
|
MEMORY_INDEX_META_TABLE,
|
|
MEMORY_INDEX_SOURCES_TABLE,
|
|
resolveMemoryBackendConfig,
|
|
type MemoryProviderStatus,
|
|
} from "../../packages/memory-host-sdk/src/engine-storage.js";
|