From 3675a64a16d4c46abe8dc8242116d52586a84a3e Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Tue, 12 Aug 2025 15:57:01 -0300 Subject: [PATCH] refactor: update imports for is_binary module move Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) --- src/meta_plugin/system.rs | 2 +- src/modes/get.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/meta_plugin/system.rs b/src/meta_plugin/system.rs index f7f3372..9d59b65 100644 --- a/src/meta_plugin/system.rs +++ b/src/meta_plugin/system.rs @@ -8,7 +8,7 @@ use std::env; use std::process; use uzers::{get_current_uid, get_current_gid, get_current_username, get_current_groupname}; -use crate::common::is_binary; +use crate::common::is_binary::is_binary; use crate::meta_plugin::MetaPlugin; #[derive(Debug, Clone, Default)] diff --git a/src/modes/get.rs b/src/modes/get.rs index 22957b0..0b89b72 100644 --- a/src/modes/get.rs +++ b/src/modes/get.rs @@ -2,7 +2,7 @@ use anyhow::anyhow; use std::io::{Read, Write}; use crate::compression_engine::{CompressionType, get_compression_engine}; -use crate::common::is_binary; +use crate::common::is_binary::is_binary; use clap::Command; use std::path::PathBuf; use std::str::FromStr;