mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-01 15:40:21 +00:00
11 lines
406 B
TypeScript
11 lines
406 B
TypeScript
import type { ChannelDoctorAdapter } from "openclaw/plugin-sdk/channel-contract";
|
|
import {
|
|
legacyConfigRules as TLON_LEGACY_CONFIG_RULES,
|
|
normalizeCompatibilityConfig as normalizeTlonCompatibilityConfig,
|
|
} from "./doctor-contract.js";
|
|
|
|
export const tlonDoctor: ChannelDoctorAdapter = {
|
|
legacyConfigRules: TLON_LEGACY_CONFIG_RULES,
|
|
normalizeCompatibilityConfig: normalizeTlonCompatibilityConfig,
|
|
};
|