refactor: update imports for is_binary module move

Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-12 15:57:01 -03:00
parent bd1d6d00c3
commit 3675a64a16
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ use std::env;
use std::process; use std::process;
use uzers::{get_current_uid, get_current_gid, get_current_username, get_current_groupname}; 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; use crate::meta_plugin::MetaPlugin;
#[derive(Debug, Clone, Default)] #[derive(Debug, Clone, Default)]

View File

@@ -2,7 +2,7 @@ use anyhow::anyhow;
use std::io::{Read, Write}; use std::io::{Read, Write};
use crate::compression_engine::{CompressionType, get_compression_engine}; use crate::compression_engine::{CompressionType, get_compression_engine};
use crate::common::is_binary; use crate::common::is_binary::is_binary;
use clap::Command; use clap::Command;
use std::path::PathBuf; use std::path::PathBuf;
use std::str::FromStr; use std::str::FromStr;