From 5344f8f525a85e3630b6238740693ff3597a6932 Mon Sep 17 00:00:00 2001 From: 2wenty1ne Date: Tue, 4 Jun 2024 12:09:16 +0200 Subject: [PATCH] API layer added --- pom.xml | 2 +- src/main/java/api/OpenWeatherMapApi.java | 4 ++++ src/main/java/com/example/helloWorld.java | 9 --------- 3 files changed, 5 insertions(+), 10 deletions(-) create mode 100644 src/main/java/api/OpenWeatherMapApi.java delete mode 100644 src/main/java/com/example/helloWorld.java diff --git a/pom.xml b/pom.xml index a0c8444..8634f86 100644 --- a/pom.xml +++ b/pom.xml @@ -53,7 +53,7 @@ - src.main.java.com.example.helloWorld + gui.GuiMain diff --git a/src/main/java/api/OpenWeatherMapApi.java b/src/main/java/api/OpenWeatherMapApi.java new file mode 100644 index 0000000..8faff6f --- /dev/null +++ b/src/main/java/api/OpenWeatherMapApi.java @@ -0,0 +1,4 @@ +package api; + +public class OpenWeatherMapApi { +} diff --git a/src/main/java/com/example/helloWorld.java b/src/main/java/com/example/helloWorld.java deleted file mode 100644 index 906123a..0000000 --- a/src/main/java/com/example/helloWorld.java +++ /dev/null @@ -1,9 +0,0 @@ -package com.example; - -public class helloWorld { - public static void main(String[] args) { - System.out.println("Hello world!"); - System.out.println("Hello world!"); - } - -}