easy-discord-logs
Version:
Advanced discord logs system and easy usage!
18 lines (17 loc) • 594 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const mongoose_1 = __importDefault(require("mongoose"));
let Schema = new mongoose_1.default.Schema({
guildId: String,
ChannelLogs: String,
BoostLogs: String,
MemberLogs: String,
GuildLogs: String,
MessageLogs: String,
RolesLogs: String,
VoiceChannelsLogs: String,
});
exports.default = mongoose_1.default.model("Logs", Schema);