pub trait FileReader: Send + Sync { // Required method fn read_file(&self, path: &str) -> Result<Vec<u8>, Error>; }