mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-19 04:11:34 +00:00
10 lines
515 B
TypeScript
10 lines
515 B
TypeScript
// Whatsapp API module exposes the plugin public contract.
|
|
import type { ChannelDoctorLegacyConfigRule } from "openclaw/plugin-sdk/channel-contract";
|
|
|
|
export { normalizeCompatibilityConfig } from "./src/doctor-contract.js";
|
|
|
|
// WhatsApp currently exposes doctor compatibility fixes without extra legacy
|
|
// rule scans. Keep that empty answer on a lightweight contract surface so
|
|
// config validation stays off the broad contract-api import path.
|
|
export const legacyConfigRules: ChannelDoctorLegacyConfigRule[] = [];
|