mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-11 09:11:13 +00:00
13 lines
478 B
TypeScript
13 lines
478 B
TypeScript
import type { ChannelPlugin } from "../runtime-api.js";
|
|
import type { ResolvedZalouserAccount } from "./accounts.js";
|
|
import { zalouserSetupAdapter } from "./setup-core.js";
|
|
import { zalouserSetupWizard } from "./setup-surface.js";
|
|
import { createZalouserPluginBase } from "./shared.js";
|
|
|
|
export const zalouserSetupPlugin: ChannelPlugin<ResolvedZalouserAccount> = {
|
|
...createZalouserPluginBase({
|
|
setupWizard: zalouserSetupWizard,
|
|
setup: zalouserSetupAdapter,
|
|
}),
|
|
};
|