mirror of
https://fastgit.cc/github.com/openclaw/openclaw
synced 2026-04-24 02:43:26 +08:00
10 lines
231 B
JavaScript
10 lines
231 B
JavaScript
export const memoryExtensionTestRoots = [
|
|
"extensions/memory-core",
|
|
"extensions/memory-lancedb",
|
|
"extensions/memory-wiki",
|
|
];
|
|
|
|
export function isMemoryExtensionRoot(root) {
|
|
return memoryExtensionTestRoots.includes(root);
|
|
}
|