mgokg's picture
Upload 107 files
f2a245f verified
raw
history blame contribute delete
224 Bytes
import { initServer } from './websocketServer';
import http from 'http';
export const startWebSocketServer = (
server: http.Server<typeof http.IncomingMessage, typeof http.ServerResponse>,
) => {
initServer(server);
};