bitwrought 0.1.1

A data integrity checker
Documentation
1
2
3
4
5
6
7
8
use std::process;

fn main() {
    if let Err(e) = bitwrought::run() {
        eprintln!("Application error: {e}");
        process::exit(1);
    }
}