chore: remove unused common module
This commit is contained in:
committed by
Andrew Phillips (aider)
parent
9f2171ea45
commit
3d94965c2e
@@ -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()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -21,6 +21,7 @@ extern crate lazy_static;
|
|||||||
pub mod compression_engine;
|
pub mod compression_engine;
|
||||||
pub mod db;
|
pub mod db;
|
||||||
pub mod digest_engine;
|
pub mod digest_engine;
|
||||||
|
pub mod plugins;
|
||||||
//pub mod item;
|
//pub mod item;
|
||||||
|
|
||||||
extern crate term;
|
extern crate term;
|
||||||
|
|||||||
Reference in New Issue
Block a user