This commit is contained in:
Hri7566 2022-05-24 20:29:29 +02:00
parent 391b8e248a
commit 345882dba7
1 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
const chalk = require('chalk');
module.exports = class Logger {
class Logger {
constructor (context) {
this.context = context;
}
@ -23,3 +23,6 @@ module.exports = class Logger {
}
}
}
module.exports = Logger;