mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-21 14:11:26 +00:00
11 lines
453 B
TypeScript
11 lines
453 B
TypeScript
import type { ChannelDoctorAdapter } from "openclaw/plugin-sdk/channel-contract";
|
|
import {
|
|
legacyConfigRules as NEXTCLOUD_TALK_LEGACY_CONFIG_RULES,
|
|
normalizeCompatibilityConfig as normalizeNextcloudTalkCompatibilityConfig,
|
|
} from "./doctor-contract.js";
|
|
|
|
export const nextcloudTalkDoctor: ChannelDoctorAdapter = {
|
|
legacyConfigRules: NEXTCLOUD_TALK_LEGACY_CONFIG_RULES,
|
|
normalizeCompatibilityConfig: normalizeNextcloudTalkCompatibilityConfig,
|
|
};
|