API layer added

Dev
2wenty1ne 2024-06-04 12:09:16 +02:00
parent 1a6983fc2e
commit 5344f8f525
3 changed files with 5 additions and 10 deletions

View File

@ -53,7 +53,7 @@
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>
src.main.java.com.example.helloWorld</mainClass>
gui.GuiMain</mainClass>
</transformer>
</transformers>
</configuration>

View File

@ -0,0 +1,4 @@
package api;
public class OpenWeatherMapApi {
}

View File

@ -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!");
}
}