Files
openclaw/extensions/line/index.ts
2026-03-16 23:52:23 -07:00

14 lines
454 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 default defineChannelPluginEntry({
id: "line",
name: "LINE",
description: "LINE Messaging API channel plugin",
plugin: linePlugin,
setRuntime: setLineRuntime,
registerFull: registerLineCardCommand,
});