mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-08 20:23:59 +00:00
13 lines
501 B
TypeScript
13 lines
501 B
TypeScript
// Imessage plugin module implements channel.setup behavior.
|
|
import type { ResolvedIMessageAccount } from "./accounts.js";
|
|
import type { ChannelPlugin } from "./channel-api.js";
|
|
import { imessageSetupAdapter } from "./setup-core.js";
|
|
import { createIMessagePluginBase, imessageSetupWizard } from "./shared.js";
|
|
|
|
export const imessageSetupPlugin: ChannelPlugin<ResolvedIMessageAccount> = {
|
|
...createIMessagePluginBase({
|
|
setupWizard: imessageSetupWizard,
|
|
setup: imessageSetupAdapter,
|
|
}),
|
|
};
|