feat: add api call file

This commit is contained in:
Felix Suchert 2023-03-27 19:12:23 +02:00
parent 99c9a1d09f
commit a6dbb94d90
Signed by: feliix42
GPG key ID: 24363525EA0E8A99

17
src/weather/api.rs Normal file
View file

@ -0,0 +1,17 @@
use super::data::WeatherData;
use super::secret::API_TOKEN;
pub fn get_weather_data() -> reqwest::Result<WeatherData> {
let api_url = format!(
"https://api.openweathermap.org/data/3.0/onecall?units={units}&lat={lat}&lon={lon}&exclude={exclude}&lang={lang}&appid={token}",
units = "metric",
lat = 51.03866,
lon = 13.70031,
exclude = "minutely",
lang = "de",
token = API_TOKEN,
);
reqwest::blocking::get(dbg!(api_url))?.json()
}