mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-03-26 02:58:23 +03:00
16 lines
396 B
Java
16 lines
396 B
Java
package ru.gravit.launcher.request;
|
|
|
|
import ru.gravit.launcher.request.websockets.StandartClientWebSocketService;
|
|
|
|
public final class PingRequest extends Request<ResultInterface> {
|
|
|
|
@Override
|
|
protected ResultInterface requestDo(StandartClientWebSocketService service) throws Exception {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public String getType() {
|
|
return null;
|
|
}
|
|
}
|