refactor: remove module prefixes from compression and digest engine functions

This commit is contained in:
Andrew Phillips
2025-05-13 15:00:30 -03:00
committed by Andrew Phillips (aider)
parent 8f93657fa1
commit 0189f3c273
5 changed files with 5 additions and 9 deletions

View File

@@ -38,7 +38,7 @@ pub fn mode_get(
item_path.push(item.id.unwrap().to_string());
let compression_type = CompressionType::from_str(&item.compression)?;
let compression_engine = crate::compression_engine::get_compression_engine(compression_type)?;
let compression_engine = get_compression_engine(compression_type)?;
compression_engine.cat(item_path.clone())?;
Ok(())