This commit is contained in:
Cat /dev/Nulo 2024-01-11 14:02:13 -03:00
parent 8f6f62a261
commit 3a31586193
2 changed files with 1 additions and 3 deletions

View file

@ -150,7 +150,7 @@ async fn db_writer(rx: Receiver<PrecioPoint>) {
let mut n = 0;
while let Ok(res) = rx.recv().await {
n += 1;
println!("{}", n);
// println!("{}", n);
println!("{:?}", res)
}
}

View file

@ -1,9 +1,7 @@
use anyhow::Context;
use simple_error::bail;
use simple_error::SimpleError;
use crate::sites::common;
use crate::sites::vtex;
use crate::PrecioPoint;
use super::vtex::find_product_ld;