Files
openclaw/extensions/line/index.ts
2026-03-17 09:38:21 -07:00

17 lines
553 B
TypeScript

import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
import { registerLineCardCommand } from "./src/card-command.js";
import { linePlugin } from "./src/channel.js";
import { setLineRuntime } from "./src/runtime.js";
export { linePlugin } from "./src/channel.js";
export { setLineRuntime } from "./src/runtime.js";
export default defineChannelPluginEntry({
id: "line",
name: "LINE",
description: "LINE Messaging API channel plugin",
plugin: linePlugin,
setRuntime: setLineRuntime,
registerFull: registerLineCardCommand,
});