use chrono::{DateTime, Utc};
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Blog {
pub title: String,
pub most_recent_pub_date: DateTime<Utc>,
pub posts: Vec<Post>,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Post {
pub title: String,
pub link: String,
pub description: Option<String>,
pub pub_date: DateTime<Utc>,
}