mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-19 22:10:51 +00:00
16 lines
504 B
TypeScript
16 lines
504 B
TypeScript
import type { ChannelPlugin } from "openclaw/plugin-sdk/core";
|
|
import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
|
|
import { ircPlugin } from "./src/channel.js";
|
|
import { setIrcRuntime } from "./src/runtime.js";
|
|
|
|
export { ircPlugin } from "./src/channel.js";
|
|
export { setIrcRuntime } from "./src/runtime.js";
|
|
|
|
export default defineChannelPluginEntry({
|
|
id: "irc",
|
|
name: "IRC",
|
|
description: "IRC channel plugin",
|
|
plugin: ircPlugin as ChannelPlugin,
|
|
setRuntime: setIrcRuntime,
|
|
});
|