mirror of https://github.com/openclaw/openclaw.git
10 lines
318 B
JavaScript
10 lines
318 B
JavaScript
import { bundledPluginRoot } from "./scripts/lib/bundled-plugin-paths.mjs";
|
|
|
|
export const matrixExtensionIds = ["matrix"];
|
|
|
|
export const matrixExtensionTestRoots = matrixExtensionIds.map((id) => bundledPluginRoot(id));
|
|
|
|
export function isMatrixExtensionRoot(root) {
|
|
return matrixExtensionTestRoots.includes(root);
|
|
}
|