mirror of
https://github.com/AlecM33/Werewolf.git
synced 2026-01-01 16:59:29 +01:00
6 lines
102 B
JavaScript
6 lines
102 B
JavaScript
const socket = io();
|
|
var games = [];
|
|
socket.on('message', function(data) {
|
|
console.log(data);
|
|
});
|