fix:repo cleanup

This commit is contained in:
2025-11-08 20:09:07 +00:00
parent f1da93791d
commit dedcc73567
1204 changed files with 121800 additions and 16971 deletions
+12
View File
@@ -0,0 +1,12 @@
import { Server } from "socket.io";
const io = new Server(3000, {
cors: {
origin: "*",
},
});
io.on("connection", (socket) => {
socket.on("echo", (msg) => {
socket.emit("echo", msg);
});
});
console.log("WebSocket server is running on ws://localhost:3000");