()
| 23 | use tokio::io::{self, AsyncBufReadExt, BufReader}; |
| 24 | |
| 25 | async fn read_line() -> String { |
| 26 | BufReader::new(io::stdin()) |
| 27 | .lines() |
| 28 | .next_line() |
| 29 | .await |
| 30 | .unwrap() |
| 31 | .unwrap_or_default() |
| 32 | } |
| 33 | |
| 34 | async fn wait_for_input() { |
| 35 | let _ = read_line().await; |
no outgoing calls
no test coverage detected