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()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user