mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-20 13:12:41 +08:00
9 lines
459 B
JavaScript
9 lines
459 B
JavaScript
![]() |
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
|