Compare commits

...

2 Commits
main ... Demo

Author SHA1 Message Date
Jan Bachmann 82efc690dc Weather Api added 2024-06-02 18:12:44 +02:00
Jan Bachmann 54d2734692 basic domain class 2024-06-02 17:35:15 +02:00
3 changed files with 20 additions and 1 deletions

View File

@ -0,0 +1,8 @@
package fassade;
/*key:
ae99892d9f70db5814b5708287f3b591
*/
public class OpenWeatherMapApi {
}

View File

@ -1,6 +1,5 @@
package fassade;
public class TravelBuddyApi {
}

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
}
}