This commit is contained in:
AdisakKanthawilang 2025-03-06 15:28:15 +07:00
parent 3a126130cd
commit d270eafda3
3 changed files with 1 additions and 28 deletions

View file

@ -1,16 +0,0 @@
import { WebSocket } from "ws";
import { wss } from "../app";
export async function sendWebSocket(data:any){
wss.clients.forEach((client: any) => {
if (client.readyState === WebSocket.OPEN) {
const message = JSON.stringify(data);
console.log("📤 Sending data to client:", message);
client.send(message, (err:any) => {
if (err) {
console.error("❌ Error sending message:", err);
}
});
}
});
}