Files
openclaw/extensions/telegram/index.ts
2026-04-05 14:20:31 +01:00

16 lines
565 B
TypeScript

import type { ChannelPlugin } from "openclaw/plugin-sdk/channel-core";
import { defineChannelPluginEntry } from "openclaw/plugin-sdk/channel-core";
import { telegramPlugin } from "./src/channel.js";
import { setTelegramRuntime } from "./src/runtime.js";
export { telegramPlugin } from "./src/channel.js";
export { setTelegramRuntime } from "./src/runtime.js";
export default defineChannelPluginEntry({
id: "telegram",
name: "Telegram",
description: "Telegram channel plugin",
plugin: telegramPlugin as ChannelPlugin,
setRuntime: setTelegramRuntime,
});