Compare commits
2 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
82efc690dc | |
|
|
54d2734692 |
|
|
@ -0,0 +1,8 @@
|
||||||
|
package fassade;
|
||||||
|
/*key:
|
||||||
|
ae99892d9f70db5814b5708287f3b591
|
||||||
|
*/
|
||||||
|
|
||||||
|
public class OpenWeatherMapApi {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
package fassade;
|
package fassade;
|
||||||
|
|
||||||
|
|
||||||
public class TravelBuddyApi {
|
public class TravelBuddyApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue