mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-10 04:40:46 -05:00
8 lines
159 B
JavaScript
8 lines
159 B
JavaScript
const mongoose = require("mongoose")
|
|
|
|
const stateSchema = new mongoose.Schema({
|
|
voting_ends: Date,
|
|
})
|
|
|
|
module.exports = mongoose.model("State", stateSchema)
|