yangys
2024-05-07 ec2552d891e163bd9054e0554188afc575bcdb70
1
2
3
4
5
6
7
8
package com.qianwen.core.websocket.message;
 
/* loaded from: blade-starter-websocket-9.3.0.0-SNAPSHOT.jar:org/springblade/core/websocket/message/PingJsonWebSocketMessage.class */
public class PingJsonWebSocketMessage extends AbstractJsonWebSocketMessage {
    public PingJsonWebSocketMessage() {
        super(WebSocketMessageTypeEnum.PING.getValue());
    }
}