Files
openclaw/src/context-engine/legacy.registration.ts
2026-04-12 00:22:32 +01:00

9 lines
301 B
TypeScript

import { LegacyContextEngine } from "./legacy.js";
import { registerContextEngineForOwner } from "./registry.js";
export function registerLegacyContextEngine(): void {
registerContextEngineForOwner("legacy", async () => new LegacyContextEngine(), "core", {
allowSameOwnerRefresh: true,
});
}