mirror of
https://github.com/hubaldv/bioz-host-rs.git
synced 2025-12-06 05:11:17 +00:00
19 lines
387 B
Rust
19 lines
387 B
Rust
// #![deny(missing_debug_implementations)]
|
|
|
|
pub mod client;
|
|
pub mod app;
|
|
pub mod communication;
|
|
pub mod plot;
|
|
pub mod signals;
|
|
pub mod logging;
|
|
pub use bioz_icd_rs as icd;
|
|
|
|
pub async fn read_line() -> String {
|
|
tokio::task::spawn_blocking(|| {
|
|
let mut line = String::new();
|
|
std::io::stdin().read_line(&mut line).unwrap();
|
|
line
|
|
})
|
|
.await
|
|
.unwrap()
|
|
} |