14 lines
363 B
JavaScript
14 lines
363 B
JavaScript
/*
|
|
* 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 = {
|
|
schema: {
|
|
name: String,
|
|
},
|
|
}
|
|
|
|
module.exports = Greeting |