Added source

This commit is contained in:
2023-04-26 07:26:55 +00:00
parent 2fa15c7070
commit 294e24058f
7 changed files with 1186 additions and 0 deletions

10
models/wolfcount.js Normal file
View File

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