refactor: move websocket and message queue to core/net

Reorganize project structure by relocating chat-websocket and message-queue modules from `src/integrations/` to `src/core/net/` to better reflect their networking purpose and improve code organization.
This commit is contained in:
2026-06-10 17:44:35 +08:00
parent a511beaa34
commit aa1688140a
3 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -3,6 +3,6 @@
*/
export * from "./browser-detect";
export * from "./chat-websocket";
export * from "../core/net/chat-websocket";
export * from "./media-recorder";
export * from "./message-queue";
export * from "../core/net/message-queue";