warcificator: seguir limpiando

This commit is contained in:
Cat /dev/Nulo 2024-01-08 11:57:08 -03:00
parent 1abd98724d
commit 78878d8b7e

View file

@ -1,11 +1,9 @@
use async_channel::{Receiver, Sender};
use rusqlite::Connection;
use serde::de::value;
use std::{
borrow::Cow,
env::{self, args},
fs,
ops::Deref,
time::{SystemTime, UNIX_EPOCH},
};
use tl::VDom;
@ -239,14 +237,14 @@ fn parse_carrefour(url: String, dom: &tl::VDom) -> Result<PrecioPoint, FetchErro
};
Ok(PrecioPoint {
ean: ean,
ean,
fetched_at: now_sec(),
in_stock: in_stock,
in_stock,
name: None,
image_url: None,
parser_version: 5,
precio_centavos: precio_centavos,
url: url,
precio_centavos,
url,
})
}