1 2 3 4 5 6 7 8 9 10 11 12
pub mod diff; pub mod engine; pub struct VerificationResult { pub total_files: i32, pub passed: i32, pub failed: i32, pub skipped: i32, pub errors: Vec<ErrorResult>, } struct ErrorResult {}