Victor Vobis 7dd25c1580 bless
2025-09-10 17:45:09 +02:00

24 lines
407 B
JavaScript

const API_URL='http://localhost:6080/api/';
console.log("Hello World");
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_content");
let content = await response.json()
console.log(content);
}