Initial commit: Veritas Cura System Optimization and Repair Suite Modules

This commit is contained in:
2026-07-28 20:43:06 +02:00
commit 435b8358af
17 changed files with 121 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "port-doctor"
version.workspace = true
edition.workspace = true
authors.workspace = true
[dependencies]
veritas-core = { path = "../../veritas-core" }
anyhow.workspace = true
+6
View File
@@ -0,0 +1,6 @@
use anyhow::Result;
fn main() -> Result<()> {
println!("🔌 Veritas PortDoctor v1.0 (USB Cleaner)");
Ok(())
}