mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-19 05:01:15 +00:00
11 lines
441 B
TypeScript
11 lines
441 B
TypeScript
import type { ChannelDoctorAdapter } from "openclaw/plugin-sdk/channel-contract";
|
|
import {
|
|
legacyConfigRules as BLUEBUBBLES_LEGACY_CONFIG_RULES,
|
|
normalizeCompatibilityConfig as normalizeBlueBubblesCompatibilityConfig,
|
|
} from "./doctor-contract.js";
|
|
|
|
export const bluebubblesDoctor: ChannelDoctorAdapter = {
|
|
legacyConfigRules: BLUEBUBBLES_LEGACY_CONFIG_RULES,
|
|
normalizeCompatibilityConfig: normalizeBlueBubblesCompatibilityConfig,
|
|
};
|