MiWatchKleaner/lib/common.js
2020-04-24 21:40:03 +01:00

24 lines
666 B
JavaScript

const chalk = require('chalk');
const clear = require('clear');
const figlet = require('figlet');
module.exports = {
header: () => {
clear();
console.log(
chalk.red(
figlet.textSync('MiWatch Kleaner', {
horizontalLayout: 'full'
})
)
);
console.log(chalk.red(' 2.0.0'));
console.log(
chalk.red(
'-------------------------------------------------------------------------------------------------------'
)
)
}
}