Renamed binaries to make things a bit more general
This commit is contained in:
11
crdt-node/src/bft_crdt/stdin.rs
Normal file
11
crdt-node/src/bft_crdt/stdin.rs
Normal file
@@ -0,0 +1,11 @@
|
||||
use std::io::BufRead;
|
||||
|
||||
/// Wait for stdin terminal input and send it to the node if any arrives
|
||||
pub(crate) fn input(stdin_sender: std::sync::mpsc::Sender<String>) {
|
||||
let stdin = std::io::stdin();
|
||||
let lines = stdin.lock().lines();
|
||||
for line in lines {
|
||||
let line = line.unwrap();
|
||||
stdin_sender.send(line).unwrap();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user