use progscrape_scrapers::{ScrapeId, StoryDate, TypedScrapeMap};
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, Deserialize, Serialize)]
pub struct StoryRender {
pub order: usize,
pub id: String,
pub url: String,
pub domain: String,
pub title: String,
pub date: StoryDate,
pub score: f32,
pub tags: Vec<String>,
pub html: String,
pub sources: TypedScrapeMap<Option<ScrapeId>>,
}