13 lines
323 B
Java
13 lines
323 B
Java
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
|
|
|
|
}
|
|
}
|