refactor: update engine calls to use imported functions

This commit is contained in:
Andrew Phillips (aider)
2025-05-13 08:56:21 -03:00
parent 41ac4dafaf
commit 889c2bc838
3 changed files with 4 additions and 4 deletions

View File

@@ -110,7 +110,7 @@ pub fn mode_info(
]));
let compression_engine =
get_compression_engine(compression_type).expect("Unable to get compression engine");
crate::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 {