8 lines
No EOL
167 B
JavaScript
8 lines
No EOL
167 B
JavaScript
const chalk = require('chalk');
|
|
|
|
module.exports = {
|
|
name: "connected",
|
|
execute() {
|
|
console.log(chalk.greenBright("[MONGO DB]: Connected to MongoDB!"));
|
|
},
|
|
}; |