mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-15 18:13:40 +03:00
7 lines
215 B
TypeScript
7 lines
215 B
TypeScript
// 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');
|
|
})();
|