Inventory update, added the 'buy', 'shop', 'work', 'rank', and 'inventory' commands

This commit is contained in:
ION606
2022-05-12 17:38:08 +03:00
parent 6b0abdb65a
commit bb1db36473
9 changed files with 970 additions and 24 deletions
+11
View File
@@ -0,0 +1,11 @@
const { Schema, model } = require('mongoose');
const Guild = Schema({
id: String,
prefix: {
default: '?',
type: String
}
});
module.exports = model('Guild', Guild);