We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc2e5b9 commit 8231b68Copy full SHA for 8231b68
1 file changed
index.js
@@ -23,13 +23,19 @@ client.em = require("./util/embed")
23
client.commands = new Discord.Collection();
24
client.aliases = new Discord.Collection();
25
26
-// Database
+// Database Mongo
27
+/*
28
const { Database } = require("quickmongo");
29
client.db = new Database(process.env.mongoUrl);
30
31
client.db.on("ready", () => {
32
console.log(" ==========================\n Mongo Database connected!\n ==========================");
33
})
34
+*/
35
+// Database Quick.db
36
+client.db = require('quick.db');
37
+
38
+// Don't use both at same time or code will stop working
39
40
// Ready
41
client.on('ready', () => {
0 commit comments