SIAF / src /lib /ws.ts
GUI STUDIO
refactor: remove foo_vue_app and related configurations
7a3ede8
Raw
History Blame
224 Bytes
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
};