Add serverside PING-command #228

Merged
lars.winzer merged 6 commits from feat/38-add-serverside-ping-command into main 2026-04-02 12:45:56 +02:00
Showing only changes of commit 92a2ffe054 - Show all commits
@@ -0,0 +1,10 @@
package ch.unibas.dmi.dbis.cs108.casono.server.app.commands.ping;
import ch.unibas.dmi.dbis.cs108.casono.server.network.protocol.request.Request;
import ch.unibas.dmi.dbis.cs108.casono.server.network.protocol.request.RequestContext;
public class PingRequest extends Request {
public PingRequest(RequestContext context) {
super(context);
}
}