Initial implementation of global DFL instance (#451)

This commit is contained in:
AAGaming
2023-05-12 02:02:04 +00:00
committed by GitHub
parent 0c83c9a2b5
commit d99f332523
4 changed files with 8 additions and 64 deletions
+6
View File
@@ -0,0 +1,6 @@
// Sets up DFL, then loads start.ts which starts up the loader
(async () => {
console.debug('Setting up decky-frontend-lib...');
window.DFL = await import('decky-frontend-lib');
await import('./start');
})();