organize imports

This commit is contained in:
Maze Winther 2026-02-01 16:43:57 +01:00
parent 03c2b16064
commit 8ea3db833f
1 changed files with 1 additions and 1 deletions

View File

@ -1,9 +1,9 @@
export { StorageMigration } from "./base";
export { StorageVersionManager } from "./version-manager";
export { runStorageMigrations } from "./runner";
import { V0toV1Migration } from "./v0-to-v1";
import { V1toV2Migration } from "./v1-to-v2";
import { V2toV3Migration } from "./v2-to-v3";
export { runStorageMigrations } from "./runner";
export const CURRENT_STORAGE_VERSION = 3;