1
0
Fork 0
mirror of https://gitlab.com/news-flash/article_scraper.git synced 2025-07-08 16:40:00 +02:00

extract thumbnail url

This commit is contained in:
Jan Lukas Gernert 2022-12-11 16:18:03 +01:00
parent 0c8aba4f4a
commit 22e98fdab7
3 changed files with 29 additions and 0 deletions

View file

@ -10,6 +10,7 @@ pub struct Article {
pub url: Url,
pub date: Option<DateTime<Utc>>,
pub html: Option<String>,
pub thumbnail_url: Option<String>,
}
impl Article {