ludo-web-multiplayer/backend/utils/constants.js
Wenszel e5a69fa4a9 fixed timeout issue
implemented timeoutManager, a more efficient solution for managing timeouts in RAM memory. this resolves the problem of lingering timeouts in the server, providing faster removal of old timeouts and improving overall performance.
2023-12-20 10:31:09 +01:00

4 lines
116 B
JavaScript

const COLORS = ['red', 'blue', 'green', 'yellow'];
const MOVE_TIME = 15000;
module.exports = { COLORS, MOVE_TIME };