mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 19:40:42 +00:00
18 lines
429 B
JavaScript
18 lines
429 B
JavaScript
import { bundledPluginRoot } from "../../scripts/lib/bundled-plugin-paths.mjs";
|
|
|
|
export const messagingExtensionIds = [
|
|
"googlechat",
|
|
"nextcloud-talk",
|
|
"nostr",
|
|
"qqbot",
|
|
"synology-chat",
|
|
"tlon",
|
|
"twitch",
|
|
];
|
|
|
|
export const messagingExtensionTestRoots = messagingExtensionIds.map((id) => bundledPluginRoot(id));
|
|
|
|
export function isMessagingExtensionRoot(root) {
|
|
return messagingExtensionTestRoots.includes(root);
|
|
}
|