Работа над BookUpdateChecker

This commit is contained in:
Book Pauk
2022-07-25 17:52:57 +07:00
parent 93bddfd05e
commit ed8be34c12
6 changed files with 55 additions and 6 deletions

View File

@@ -1,3 +1,9 @@
const fs = require('fs-extra');
const FileDownloader = require('../FileDownloader');
const log = new (require('../AppLogger'))().log;//singleton
let instance = null;
//singleton
@@ -18,6 +24,15 @@ class BUCServer {
}
async main() {
try {
//
log(`---------------------------`);
log(`Book Update checker started`);
log(`---------------------------`);
} catch (e) {
log(LM_FATAL, e.stack);
}
}
}