rashi-discord-bot-lib
Version:
🚀 Powerful Discord bot framework with built-in database, event handling, and utilities
14 lines • 314 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.setDb = setDb;
exports.getDb = getDb;
let _db = null;
function setDb(db) {
_db = db;
}
function getDb() {
if (!_db)
throw new Error('MongoDB not connected yet');
return _db;
}
//# sourceMappingURL=mongo.js.map