Spaces:
Running
Running
| import type { OpenClawPluginApi } from "openclaw/plugin-sdk"; | |
| import { emptyPluginConfigSchema } from "openclaw/plugin-sdk"; | |
| import { telegramPlugin } from "./src/channel.js"; | |
| import { setTelegramRuntime } from "./src/runtime.js"; | |
| const plugin = { | |
| id: "telegram", | |
| name: "Telegram", | |
| description: "Telegram channel plugin", | |
| configSchema: emptyPluginConfigSchema(), | |
| register(api: OpenClawPluginApi) { | |
| setTelegramRuntime(api.runtime); | |
| api.registerChannel({ plugin: telegramPlugin }); | |
| }, | |
| }; | |
| export default plugin; | |