feat: support tomcat websocket

Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
2020-05-26 15:45:40 +08:00
parent d29efb2332
commit 58478116c6
14 changed files with 185 additions and 46 deletions

View File

@@ -0,0 +1,8 @@
export enum ServerEvent {
detect = 'detect',
connect = 'connect',
connection = 'connection',
message = 'message',
error = 'error',
disconnect = 'disconnect'
}