UNPKG

509 BJavaScriptView Raw
1const chalk = require('chalk')
2
3const printHeader = () => {
4 console.log(chalk.blue('\n ########################################'))
5 console.log(chalk.yellow(' AWS EC2 Encryption Check'))
6 console.log(chalk.blue(' ########################################'))
7 console.log(chalk.yellow('\n Scanning Instances'))
8}
9
10const printFooter = () => {
11 console.log(chalk.blue('\n ########################################'))
12}
13
14module.exports = { printFooter, printHeader }