openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
18 lines (17 loc) • 645 B
JavaScript
import { r as loadBundledPluginPublicSurfaceModuleSync } from "../facade-loader-Dp8IS24b.js";
//#region src/plugin-sdk/telegram-account.ts
function loadTelegramAccountFacadeModule() {
return loadBundledPluginPublicSurfaceModuleSync({
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 };