Created KissAsianScraper.

This commit is contained in:
2021-06-11 22:19:34 -05:00
parent 07f2932477
commit 7467b699df
8 changed files with 1189 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
const chalk = require('chalk');
class Logger {
static info(...args) {
console.info(chalk.blue(...args));
}
static error(...args) {
console.error(chalk.red(...args));
}
static success(...args) {
console.log(chalk.green(...args));
}
static warn(...args) {
console.warn(chalk.yellow(...args));
}
}
module.exports = Logger;