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 617B

123456789101112
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. async function getDownloaderForSystem() {
  4. // TODO: Resolve the downloader or default to GotDownloader
  5. // Current thoughts are a dot-file traversal for something like
  6. // ".electron.downloader" which would be a text file with the name of the
  7. // npm module to import() and use as the downloader
  8. const { GotDownloader } = await Promise.resolve().then(() => require('./GotDownloader'));
  9. return new GotDownloader();
  10. }
  11. exports.getDownloaderForSystem = getDownloaderForSystem;
  12. //# sourceMappingURL=downloader-resolver.js.map