mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-16 14:01:36 +00:00
11 lines
282 B
JavaScript
11 lines
282 B
JavaScript
// Test routing roots for memory extension suites.
|
|
export const memoryExtensionTestRoots = [
|
|
"extensions/memory-core",
|
|
"extensions/memory-lancedb",
|
|
"extensions/memory-wiki",
|
|
];
|
|
|
|
export function isMemoryExtensionRoot(root) {
|
|
return memoryExtensionTestRoots.includes(root);
|
|
}
|