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.

downloader-resolver.js 459B

123456789
  1. export async function getDownloaderForSystem() {
  2. // TODO: Resolve the downloader or default to GotDownloader
  3. // Current thoughts are a dot-file traversal for something like
  4. // ".electron.downloader" which would be a text file with the name of the
  5. // npm module to import() and use as the downloader
  6. const { GotDownloader } = await import('./GotDownloader');
  7. return new GotDownloader();
  8. }
  9. //# sourceMappingURL=downloader-resolver.js.map