Files
Sheep-Service/web/lib/pages/stand/list/script.js
Rozenrod 6ec6523d71 Переработаны роутеры приложения
Переписано APi WebSocket для работы с новыми роутерами
2025-10-03 17:11:31 +03:00

6 lines
187 B
JavaScript

const Stand_list = {
init: async () => {
let html = await fetch('/lib/pages/stand/list/index.html').then((response) => response.text());
app.innerHTML = html;
},
}