systemquery/src/static/js/routes/route_dashboard.mjs

9 lines
216 B
JavaScript

"use strict";
export default async function route_main() {
console.log(`TODO: Implement the dashboard :-)`);
for await (let item of globalThis.sysquery.table("cpu")) {
console.log(`[TABLE] item`, item);
}
}