You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
512 B

const mongoose = require('mongoose');
const Schema = mongoose.Schema;
let mcommand =
new Schema(
{
command: {type: String, required: true, max: 100},
guild: {type: String, required: true, max: 100},
textchannel:{type: String, required: true, max:100},
voice:{type: String, required: true, max: 100}
}
);
const mCommand = module.exports = mongoose.model('mCommands', mcommand);
module.exports.get = (callback, limit)=>
{
mCommand.find(callback).limit(limit);
}