UNPKG

@dreesq/serpent

Version:

An express wrapper for developing fast web applications

13 lines (12 loc) 204 B
/** * Task Schema */ module.exports = Schema => { return new Schema({ title: String, userId: { type: Schema.ObjectId, references: 'user' } }); };