Weather Api added

Demo
Jan Bachmann 2024-06-02 18:12:44 +02:00 committed by Jan B
parent 54d2734692
commit 82efc690dc
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package gui;
import fassade.OpenWeatherMapApi;
public class TuiForTests {
String Location = "Mannheim";
OpenWeatherMapApi weatherMapApi = new OpenWeatherMapApi();
public static void main(String[] args) {
//http://api.openweathermap.org/data/2.5/forecast?q=LOCATION&appid=API_KEY&units=metric
}
}