Added count, added some new playing lines, fixed security issue with hackban

This commit is contained in:
TheEssem 2020-04-26 16:55:33 -05:00
parent e9f4109f43
commit c65a8115aa
6 changed files with 94 additions and 4 deletions

View file

@ -22,5 +22,11 @@ const tweetSchema = new mongoose.Schema({
});
const TweetCollection = mongoose.model("TweetCollection", tweetSchema);
const globalSchema = new mongoose.Schema({
cmdCounts: Map
});
const Global = mongoose.model("Global", globalSchema);
exports.guilds = Guild;
exports.tweets = TweetCollection;
exports.tweets = TweetCollection;
exports.global = Global;