const mongoose = require('mongoose'); const wolfclountSchema = new mongoose.Schema({ count: Number, validation: String }); const Wolfcount = mongoose.model('Wolfcount', wolfclountSchema); module.exports = Wolfcount;