mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-18 05:20:48 +00:00
17 lines
553 B
TypeScript
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,
|
|
});
|