UNPKG

xpg

Version:

a module to help auto generating correct structure of rest services in express (model-view-controller-service).

7 lines (5 loc) 149 B
const { Schema, model } = require('mongoose') const indexSchema = new Schema({ name: String }) module.exports = model('Index', indexSchema)