feat(messaging/websocket): 新增消息模块 - WebSocket

This commit is contained in:
2024-06-04 22:43:27 +08:00
parent 3d2a4271d5
commit cc079e8bf4
16 changed files with 647 additions and 9 deletions

View File

@@ -114,6 +114,16 @@ public class PropertiesConstants {
*/
public static final String CAPTCHA_BEHAVIOR = CAPTCHA + StringConstants.DOT + "behavior";
/**
* 消息配置
*/
public static final String MESSAGING = CONTINEW_STARTER + StringConstants.DOT + "messaging";
/**
* WebSocket 配置
*/
public static final String MESSAGING_WEBSOCKET = MESSAGING + StringConstants.DOT + "websocket";
private PropertiesConstants() {
}
}