Holana/events/mongo/connected.js

8 lines
167 B
JavaScript
Raw Normal View History

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