This commit is contained in:
2025-09-09 00:10:53 +03:00
parent 38f2a05107
commit 204fc092d7
239 changed files with 22447 additions and 9536 deletions

View File

@@ -0,0 +1,8 @@
const Schedule = {
init: async () => {
let html = await fetch('/lib/pages/schedule/index.html').then((response) => response.text());
app.innerHTML = html;
}
}