devbug/app/models/Greeting.model.js

12 lines
338 B
JavaScript
Raw Normal View History

2019-06-21 22:01:34 +00:00
/*
* Greeting Model
* -------------------------------------------------------------
* This is a sample model. The schema or structure of the model should
* be specified here. It is then passed to Mongoose and can be accessed
* globally using the model() function.
*/
const Greeting = {
name: String,
}
module.exports = Greeting