1 2 3 4 5 6 7 8 9
//! Review constants used by launcher convenience wrappers. use std::path::PathBuf; pub const DEFAULT_MAX_REVIEW_CHUNKS: usize = 80; pub fn default_output_path() -> PathBuf { PathBuf::from("REVIEW.md") }