feat: Introduce Launcher class as the application entry point and update pom.xml to use it.

This commit is contained in:
2025-11-23 21:53:52 +00:00
parent 19709f0d7a
commit 906e958729
2 changed files with 10 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
package sd.dashboard;
public class Launcher {
public static void main(String[] args) {
DashboardUI.main(args);
}
}