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

@@ -109,7 +109,7 @@ pub fn mode_info(
]));
let compression_engine =
crate::compression_engine::get_compression_engine(compression_type).expect("Unable to get compression engine");
get_compression_engine(compression_type).expect("Unable to get compression engine");
let magic = compression_engine.magic(item_path.clone());
let file_magic_cell = match magic {