Files
openclaw/extensions/zalouser/src/setup-core.ts
2026-03-16 21:33:59 -07:00

10 lines
270 B
TypeScript

import { createPatchedAccountSetupAdapter } from "openclaw/plugin-sdk/setup";
const channel = "zalouser" as const;
export const zalouserSetupAdapter = createPatchedAccountSetupAdapter({
channelKey: channel,
validateInput: () => null,
buildPatch: () => ({}),
});