Move parsers to unique files

This commit is contained in:
2025-10-10 13:29:45 +01:00
parent f8745808b9
commit 5aa4c33059
9 changed files with 318 additions and 196 deletions

View File

@@ -1,8 +1,8 @@
import { promises as fs } from 'fs';
import path from 'path';
import { Register } from '@/utils/parser';
import { parseNextReg } from '@/utils/parser';
import { Register } from '@/utils/register_parser';
import { parseNextReg } from '@/utils/register_parser';
let registers: Register[] = [];