2026-03-16 23:51:41 -07:00
|
|
|
import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
|
2026-01-25 07:22:36 -05:00
|
|
|
import { registerLineCardCommand } from "./src/card-command.js";
|
2026-02-01 10:03:47 +09:00
|
|
|
import { linePlugin } from "./src/channel.js";
|
2026-01-25 07:22:36 -05:00
|
|
|
import { setLineRuntime } from "./src/runtime.js";
|
|
|
|
|
|
2026-03-17 09:33:17 -07:00
|
|
|
export { linePlugin } from "./src/channel.js";
|
|
|
|
|
export { setLineRuntime } from "./src/runtime.js";
|
|
|
|
|
|
2026-03-16 23:51:41 -07:00
|
|
|
export default defineChannelPluginEntry({
|
2026-01-25 07:22:36 -05:00
|
|
|
id: "line",
|
|
|
|
|
name: "LINE",
|
|
|
|
|
description: "LINE Messaging API channel plugin",
|
2026-03-16 23:51:41 -07:00
|
|
|
plugin: linePlugin,
|
|
|
|
|
setRuntime: setLineRuntime,
|
|
|
|
|
registerFull: registerLineCardCommand,
|
|
|
|
|
});
|