Ugh
This commit is contained in:
13
src/lib.rs
13
src/lib.rs
@@ -29,15 +29,15 @@
|
||||
//! - `magic`: File type detection via libmagic.
|
||||
|
||||
// Re-export modules for testing
|
||||
pub mod args;
|
||||
pub mod common;
|
||||
pub mod compression_engine;
|
||||
pub mod config;
|
||||
pub mod services;
|
||||
pub mod db;
|
||||
pub mod filter_plugin;
|
||||
pub mod meta_plugin;
|
||||
pub mod modes;
|
||||
pub mod filter_plugin;
|
||||
pub mod args;
|
||||
pub mod services;
|
||||
|
||||
// Re-export Args struct for library usage
|
||||
pub use args::Args;
|
||||
@@ -46,13 +46,10 @@ pub use common::PIPESIZE;
|
||||
|
||||
// Import all filter plugins to ensure they register themselves
|
||||
#[allow(unused_imports)]
|
||||
use filter_plugin::{
|
||||
head, tail, skip, grep, strip_ansi
|
||||
};
|
||||
use filter_plugin::{grep, head, skip, strip_ansi, tail};
|
||||
|
||||
use crate::meta_plugin::{
|
||||
cwd, user, shell, shell_pid, keep_pid, digest,
|
||||
read_time, read_rate, hostname, exec, env
|
||||
cwd, digest, env, exec, hostname, keep_pid, read_rate, read_time, shell, shell_pid, user,
|
||||
};
|
||||
|
||||
#[cfg(feature = "magic")]
|
||||
|
||||
Reference in New Issue
Block a user