openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
18 lines (17 loc) • 653 B
JavaScript
import { i as loadBundledPluginPublicSurfaceModuleSyncCore } from "../facade-loader-CVT-xVW5.js";
//#region src/plugin-sdk/telegram-account.ts
function loadTelegramAccountFacadeModule() {
return loadBundledPluginPublicSurfaceModuleSyncCore({
dirName: "telegram",
artifactBasename: "api.js"
});
}
/**
* @deprecated Compatibility facade for plugin code that needs Telegram account resolution.
* New channel plugins should prefer injected runtime helpers and generic SDK subpaths.
*/
function resolveTelegramAccount(params) {
return loadTelegramAccountFacadeModule().resolveTelegramAccount(params);
}
//#endregion
export { resolveTelegramAccount };