Add user activity

This commit is contained in:
jeffvli
2022-11-15 13:35:26 -08:00
parent e76267be06
commit f9c5e6f9fb
6 changed files with 514 additions and 13 deletions
+1 -1
View File
@@ -53,6 +53,6 @@ const io = new socketio.Server(server, {
});
app.set('socketio', io);
io.on('connection', (socket) => sockets(socket));
io.on('connection', (socket) => sockets(socket, io));
server.listen(9321, () => console.log(`Listening on port ${PORT}`));