1use std::path::PathBuf; 2 3#[derive(Debug)] 4pub struct Paths { 5 pub input_path: PathBuf, 6 pub output_path: PathBuf, 7}