initial commit

This commit is contained in:
2025-04-12 13:01:03 +02:00
parent b3af8f76d7
commit 32f3124374
7 changed files with 112 additions and 0 deletions

7
src/main.rs Normal file
View File

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