docker stuff

This commit is contained in:
41666 2022-11-20 22:19:55 -05:00
parent e5c845a159
commit 75ab42ecb5
5 changed files with 53 additions and 8 deletions

View file

@ -110,12 +110,8 @@ async fn main() {
let init = tokio::spawn(send_init(tx.clone()));
futures::select! {
_ = fused_reader => {
println!("Reader finished");
}
_ = fused_writer => {
println!("Writer finished");
}
_ = fused_reader => {}
_ = fused_writer => {}
}
init.await.unwrap();