mod descriptor;
mod json;
mod row;
#[cfg(test)]
mod tests;
mod types;
pub use descriptor::{Variable, VariableDescriptor};
pub(crate) use json::{decode_forecast_json, decode_forecast_json_many};
pub use row::{HourlyRow, HourlyRowIter};
pub use types::{
CurrentData, DailyData, ForecastResponse, HourlyData, Minutely15Data, MonthlyData,
SeriesValues, VariableSeries,
};