mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 17:51:22 +00:00
12 lines
369 B
TypeScript
12 lines
369 B
TypeScript
import { definePluginEntry } from "./api.js";
|
|
import { migrateMemoryWikiLegacyConfig } from "./src/config-compat.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "memory-wiki",
|
|
name: "Memory Wiki Setup",
|
|
description: "Lightweight Memory Wiki setup hooks",
|
|
register(api) {
|
|
api.registerConfigMigration((config) => migrateMemoryWikiLegacyConfig(config));
|
|
},
|
|
});
|