Victor Vobis 46c9ac3dd7 bless
2025-09-09 21:03:49 +02:00

22 lines
370 B
JavaScript

const API_URL='http://localhost:6080/api/';
const connection = {
ws: [],
node_list: [],
}
function establishConnection() {
const ws = new WebSocket('ws://localhost:6000');
}
function updateTableStats() {
}
async function getTableContent() {
let response = await fetch(API_URL + "get_table");
let content = await response.json()
console.log(content);
}