mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-14 10:41:23 +00:00
9 lines
253 B
TypeScript
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);
|
|
}
|