mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-28 04:23:35 +00:00
13 lines
478 B
TypeScript
13 lines
478 B
TypeScript
// Line plugin module implements channel.setup behavior.
|
|
import type { ChannelPlugin, ResolvedLineAccount } from "./channel-api.js";
|
|
import { lineChannelPluginCommon } from "./channel-shared.js";
|
|
import { lineSetupAdapter } from "./setup-core.js";
|
|
import { lineSetupWizard } from "./setup-surface.js";
|
|
|
|
export const lineSetupPlugin: ChannelPlugin<ResolvedLineAccount> = {
|
|
id: "line",
|
|
...lineChannelPluginCommon,
|
|
setupWizard: lineSetupWizard,
|
|
setup: lineSetupAdapter,
|
|
};
|