Holana/events/mongo/connected.js

8 lines
167 B
JavaScript
Raw Normal View History

2023-04-29 09:59:08 +00:00
const chalk = require('chalk');
module.exports = {
name: "connected",
execute() {
console.log(chalk.greenBright("[MONGO DB]: Connected to MongoDB!"));
},
};