1
0

feat: New v3 API
All checks were successful
Remote Deploy / deploy (push) Successful in 6s

This commit is contained in:
2026-02-06 20:27:21 +01:00
parent 82074aee60
commit e3020a278f
2 changed files with 305 additions and 1 deletions

View File

@@ -13,7 +13,10 @@
*/
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(downloadedFilePath);
}