2026-03-17 21:39:32 -07:00
|
|
|
import type { ChannelPlugin } from "../runtime-api.js";
|
2026-03-18 03:33:22 +07:00
|
|
|
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,
|
|
|
|
|
}),
|
|
|
|
|
};
|