mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-14 23:11:56 -05:00
8 lines
162 B
JavaScript
8 lines
162 B
JavaScript
const mongoose = require("mongoose");
|
|
|
|
const stateSchema = new mongoose.Schema({
|
|
voting_ends: Date,
|
|
});
|
|
|
|
module.exports = mongoose.model("State", stateSchema);
|