mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
7 lines
222 B
JavaScript
7 lines
222 B
JavaScript
// Test routing roots for Telegram extension tests.
|
|
export const telegramExtensionTestRoots = ["extensions/telegram"];
|
|
|
|
export function isTelegramExtensionRoot(root) {
|
|
return telegramExtensionTestRoots.includes(root);
|
|
}
|