relocate windowman to be in /scripts/GUI

This commit is contained in:
buzz-lightsnack-2007 2024-04-15 15:16:40 +08:00
parent 9e164cabcc
commit b5bcb59de2
7 changed files with 39 additions and 63 deletions

View file

@ -6,12 +6,8 @@
//import { windowman } from "../windowman.js";
async function build() {
let secretariat = await import(
chrome.runtime.getURL("scripts/secretariat.js")
);
let windowman = (
await import(chrome.runtime.getURL("gui/scripts/windowman.js"))
).default;
let secretariat = await import(chrome.runtime.getURL("scripts/secretariat.js"));
let windowman = (await import(chrome.runtime.getURL("/scripts/GUI/windowman.js"))).default;
let window = new windowman();
window.sync();