started dispatch-server

This commit is contained in:
PxlLoewe
2025-03-13 00:01:39 -07:00
parent e0703c0e33
commit ec335ce489
7 changed files with 1265 additions and 8 deletions

View File

@@ -0,0 +1,8 @@
import { Server, Socket } from "socket.io";
export const handle = async (socket: Socket, io: Server) => {
console.log("Connected to dispatch server");
socket.on("disconnect", () => {
console.log("Disconnected from dispatch server");
});
};