openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
29 lines (28 loc) • 841 B
JavaScript
import { t as defineBundledChannelEntry } from "../../channel-entry-contract-r6BhwhwP.js";
import { t as registerTelegramMiniApp } from "../../miniapp-api-D1ypAmmF.js";
//#region extensions/telegram/index.ts
var telegram_default = defineBundledChannelEntry({
id: "telegram",
name: "Telegram",
description: "Telegram channel plugin",
importMetaUrl: import.meta.url,
plugin: {
specifier: "./channel-plugin-api.js",
exportName: "telegramPlugin"
},
secrets: {
specifier: "./secret-contract-api.js",
exportName: "channelSecrets"
},
runtime: {
specifier: "./runtime-setter-api.js",
exportName: "setTelegramRuntime"
},
accountInspect: {
specifier: "./account-inspect-api.js",
exportName: "inspectTelegramReadOnlyAccount"
},
registerFull: registerTelegramMiniApp
});
//#endregion
export { telegram_default as default };