implemented IDStore

This commit is contained in:
2025-04-12 14:36:33 +02:00
parent 32f3124374
commit c7dbbc1b43
6 changed files with 387 additions and 5 deletions

View File

@@ -1,7 +1,9 @@
use pm3::run_pm3;
mod parser;
mod pm3;
mod id_store;
fn main() {
pm3::RunPm3().unwrap();
run_pm3().unwrap();
}