rename websocket directory to websocket-chat

This commit is contained in:
2025-10-01 07:51:50 -04:00
parent a762bed15c
commit e63615eb46
70 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
export enum WebSocketConnectionStatus {
Connecting = 0,
Open = 1,
Closing = 2,
Closed = 3,
Error = 4
}