Update 2025-04-13_16:43:49

This commit is contained in:
root
2025-04-13 16:43:50 +02:00
commit 5b46114a61
2244 changed files with 407391 additions and 0 deletions

13
static/app.js Normal file
View File

@ -0,0 +1,13 @@
import { setupResetButton } from './button.js';
import { loadStatus, updateTimer } from './timer.js';
import { drawChart } from './chart.js';
window.addEventListener("DOMContentLoaded", () => {
loadStatus();
updateTimer();
setInterval(updateTimer, 1000);
setupResetButton();
drawChart();
});