import { ServerWebSocket } from "elysia/ws/bun"; const ws_clients = new Map< string, { socket: ServerWebSocket; channel?: string; [key: string]: any; } >(); export const NS_websockets = { ws_clients };