mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-19 05:50:47 +00:00
Merged via squash.
Prepared head SHA: 8bd7d6c13b
Co-authored-by: hmemcpy <601206+hmemcpy@users.noreply.github.com>
Co-authored-by: gumadeiras <5599352+gumadeiras@users.noreply.github.com>
Reviewed-by: @gumadeiras
18 lines
573 B
TypeScript
18 lines
573 B
TypeScript
import type { ChannelPlugin, OpenClawPluginApi } from "openclaw/plugin-sdk/core";
|
|
import { emptyPluginConfigSchema } from "openclaw/plugin-sdk/core";
|
|
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 as ChannelPlugin });
|
|
},
|
|
};
|
|
|
|
export default plugin;
|