//! Data models for macro-economic sources (FRED, US Treasury).
//!//! Re-exports canonical types from `crate::models::economic`.
pubusecrate::models::economic::{MacroObservation, MacroSeries, TreasuryYield};/// A single scheduled economic-data release date from the FRED
/// `releases/dates` endpoint.
#[derive(Debug, Clone)]pubstructReleaseDate{/// FRED release identifier.
pubrelease_id:u64,
/// Human-readable release name (e.g. "Consumer Price Index").
pubrelease_name: String,
/// Release date as an ISO `YYYY-MM-DD` string.
pubdate: String,
}