mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-27 21:53:37 +00:00
11 lines
498 B
TypeScript
11 lines
498 B
TypeScript
// Matrix plugin module implements matrix migration behavior.
|
|
export { autoMigrateLegacyMatrixState, detectLegacyMatrixState } from "./legacy-state.js";
|
|
export { autoPrepareLegacyMatrixCrypto, detectLegacyMatrixCrypto } from "./legacy-crypto.js";
|
|
export {
|
|
hasActionableMatrixMigration,
|
|
hasPendingMatrixMigration,
|
|
resolveMatrixMigrationStatus,
|
|
type MatrixMigrationStatus,
|
|
} from "./migration-snapshot.js";
|
|
export { maybeCreateMatrixMigrationSnapshot } from "./migration-snapshot-backup.js";
|