2026-03-16 23:51:41 -07:00
|
|
|
import type { ChannelPlugin } from "openclaw/plugin-sdk/core";
|
|
|
|
|
import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
|
2026-02-10 15:33:57 -08:00
|
|
|
import { ircPlugin } from "./src/channel.js";
|
|
|
|
|
import { setIrcRuntime } from "./src/runtime.js";
|
|
|
|
|
|
2026-03-17 09:33:17 -07:00
|
|
|
export { ircPlugin } from "./src/channel.js";
|
|
|
|
|
export { setIrcRuntime } from "./src/runtime.js";
|
|
|
|
|
|
2026-03-16 23:51:41 -07:00
|
|
|
export default defineChannelPluginEntry({
|
2026-02-10 15:33:57 -08:00
|
|
|
id: "irc",
|
|
|
|
|
name: "IRC",
|
|
|
|
|
description: "IRC channel plugin",
|
2026-03-16 23:51:41 -07:00
|
|
|
plugin: ircPlugin as ChannelPlugin,
|
|
|
|
|
setRuntime: setIrcRuntime,
|
|
|
|
|
});
|