Работа над DbCreator и WebWorker

This commit is contained in:
Book Pauk
2022-08-17 02:40:57 +07:00
parent d00cb200a3
commit f76a8f14ec
2 changed files with 101 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
const InpxParser =
class DbCreator {
constructor(config) {
this.config = config;
}
async run(db, callback) {
const config = this.config;
}
}
module.exports = DbCreator;