Revert "Beautifying"

This reverts commit 3a3bb89635
This commit is contained in:
2023-04-24 22:02:52 +00:00
parent 6dbb92241a
commit 510f6afd23
40 changed files with 3329 additions and 3951 deletions

View File

@@ -1,9 +1,9 @@
const { Schema, model } = require("mongoose");
const { Schema, model } = require('mongoose');
const guildAppSchema = new Schema({
_id: Schema.Types.ObjectId,
userID: { type: String, required: true },
uuid: { type: String, required: true }
_id: Schema.Types.ObjectId,
userID: { type: String, required: true },
uuid: { type: String, required: true },
});
module.exports = model("guildapp", guildAppSchema, "guildapp");
module.exports = model('guildapp', guildAppSchema, 'guildapp');