feat: add clients handler via thread

This commit is contained in:
2025-04-01 00:00:41 +02:00
parent 8599c14979
commit 2459dca82e
4 changed files with 171 additions and 50 deletions

View File

@@ -43,7 +43,8 @@ public class App {
break;
case "server":
System.out.println("Starting server...");
Server.run();
Server server = new Server(6666);
server.run();
break;
}
}