Files
Sheep-Service/web/lib/pages/options/script.js
2025-03-31 00:22:21 +03:00

6 lines
174 B
JavaScript

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