Compare commits

..

No commits in common. "a46962e87c6af160119f588e679ae35fb4c8d51e" and "71e64fa99d6d8f81989dbcdbe81184b4f9c9c343" have entirely different histories.

View file

@ -59,7 +59,7 @@ async fn main() {
let weather_result = weather_client.forecast() let weather_result = weather_client.forecast()
.query(Query::City("Toulouse".to_string())) .query(Query::City("Toulouse".to_string()))
.days(2) .days(2)
.dt(Utc.with_ymd_and_hms(2022, 08, 21, 0, 0, 0).unwrap()) .dt(Utc.ymd(2022, 08, 21).and_hms(0, 0, 0))
.lang(Language::French) .lang(Language::French)
.call(); .call();