Refactoring

This commit is contained in:
Sebastien Riviere
2026-02-18 10:57:08 +01:00
parent 4d8dcd241c
commit 776bbcd723
23 changed files with 191 additions and 265 deletions

View File

@@ -0,0 +1,8 @@
// Socket
import { io } from "socket.io-client";
// Constants
import { SOCKET_URL } from "../../constants";
export const socket = io(SOCKET_URL, {
path: "/back/socket.io"
});