mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-17 16:51:36 +00: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);
|
|
}
|