1 2 3 4 5 6 7 8 9 10 11
use clap::StructOpt; use paperazzi::PRZZIConfig; use paperazzi::PRZZIError; use paperazzi::PRZZI; fn main() -> Result<(), PRZZIError> { let config = PRZZIConfig::parse(); let mut przzi = PRZZI::new(config)?; przzi.run()?; Ok(()) }