chore: remove unused common module

This commit is contained in:
Andrew Phillips
2025-05-22 10:02:41 -03:00
committed by Andrew Phillips (aider)
parent 9f2171ea45
commit 3d94965c2e
2 changed files with 1 additions and 15 deletions

View File

@@ -1,15 +0,0 @@
use std::io::Write;
pub struct ProgramWriter {
stdin: std::process::ChildStdin,
}
impl Write for ProgramWriter {
fn write(&mut self, buf: &[u8]) -> std::io::Result<usize> {
self.stdin.write(buf)
}
fn flush(&mut self) -> std::io::Result<()> {
self.stdin.flush()
}
}

View File

@@ -21,6 +21,7 @@ extern crate lazy_static;
pub mod compression_engine;
pub mod db;
pub mod digest_engine;
pub mod plugins;
//pub mod item;
extern crate term;