Mark closed pulse map files

This commit is contained in:
Dominik Werder
2021-09-17 20:38:20 +02:00
parent ad7f25b4c6
commit e1e930f453
14 changed files with 263 additions and 161 deletions

View File

@@ -7,6 +7,10 @@ use tokio_postgres::{Client, NoTls};
pub mod scan;
pub mod search;
pub mod pg {
pub use tokio_postgres::Client;
}
pub async fn delay_us(mu: u64) {
tokio::time::sleep(Duration::from_micros(mu)).await;
}