Index: lib/downloader.js |
=================================================================== |
--- a/lib/downloader.js |
+++ b/lib/downloader.js |
@@ -16,17 +16,17 @@ |
*/ |
"use strict"; |
/** |
* @fileOverview Downloads a set of URLs in regular time intervals. |
*/ |
-const {Utils} = require("utils"); |
+const {Utils} = require("abp-modules/utils"); |
const MILLIS_IN_SECOND = exports.MILLIS_IN_SECOND = 1000; |
const MILLIS_IN_MINUTE = exports.MILLIS_IN_MINUTE = 60 * MILLIS_IN_SECOND; |
const MILLIS_IN_HOUR = exports.MILLIS_IN_HOUR = 60 * MILLIS_IN_MINUTE; |
const MILLIS_IN_DAY = exports.MILLIS_IN_DAY = 24 * MILLIS_IN_HOUR; |
let Downloader = |
/** |