use std::fs::File; use std::io::Read; use std::path::Path; use anyhow::Result; pub fn read_file(path: &Path) -> Result { let mut file = File::open(path)?; let mut contents = String::new(); file.read_to_string(&mut contents)?; Ok(contents) }