mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-09 08:11:09 +00:00
10 lines
270 B
TypeScript
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: () => ({}),
|
|
});
|