mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06: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);
|
|
}
|