pub trait FileResolver { // Required method fn resolve( &self, path: &Path, current_dir: &Path, ) -> Result<(PathBuf, String), Error>; }
Returns the absolute path found and the file content