Files
openclaw/src/commands/doctor/shared/runtime-compat-api.ts

9 lines
253 B
TypeScript

import { applyLegacyDoctorMigrations } from "./legacy-config-migrate.js";
export function applyRuntimeLegacyConfigMigrations(raw: unknown): {
next: Record<string, unknown> | null;
changes: string[];
} {
return applyLegacyDoctorMigrations(raw);
}