Add: Main, ClientApp, and ServerApp classes for application entry point with... #159

Merged
lars.winzer merged 5 commits from feat/project-preperations into main 2026-03-04 15:26:55 +01:00
Showing only changes of commit bf0dadc977 - Show all commits
@@ -3,6 +3,6 @@ package ch.unibas.dmi.dbis.cs108.casono.server;
public class ServerApp { public class ServerApp {
public static void start(String arg) { public static void start(String arg) {
int port = Integer.parseInt(arg); int port = Integer.parseInt(arg);
System.out.println("You've selected the server. It will accept connections at port" + port); System.out.println("You've selected the server. It will accept connections at port " + port);
} }
} }