Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789 |
- export async function getDownloaderForSystem() {
- // TODO: Resolve the downloader or default to GotDownloader
- // Current thoughts are a dot-file traversal for something like
- // ".electron.downloader" which would be a text file with the name of the
- // npm module to import() and use as the downloader
- const { GotDownloader } = await import('./GotDownloader');
- return new GotDownloader();
- }
- //# sourceMappingURL=downloader-resolver.js.map
|