module.exports = { success(string) { console.log('\x1b[32m%s\x1b[0m', string); }, error(string) { console.log('\x1b[31m%s\x1b[0m', string); }, };