13 lines
171 B
JavaScript
13 lines
171 B
JavaScript
const connection = {
|
|
ws: [],
|
|
node_list: [],
|
|
}
|
|
|
|
function establishConnection() {
|
|
const ws = new WebSocket('ws://localhost:6000');
|
|
}
|
|
|
|
function updateTableStats() {
|
|
|
|
}
|