1
0

chore: Idk

This commit is contained in:
2026-01-30 19:18:04 +01:00
parent 16f6eef215
commit e78ee594a0
4 changed files with 88 additions and 1 deletions

View File

@@ -13,7 +13,9 @@
*/
import parseV1V2 from "./parse/v1_v2.js";
import parseV3 from "./parse/v3.js";
export default async function parseThisShit(downloadedFilePath) {
await parseV1V2(downloadedFilePath)
await parseV1V2(downloadedFilePath);
await parseV3("db/v2.json"); // NEEDS TO BE RAN AFTER V2 (uses its format)
}