12 lines
419 B
TypeScript
12 lines
419 B
TypeScript
import { type ChannelPlugin, type ResolvedLineAccount } from "../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,
|
|
};
|