UNPKG

@dreesq/serpent

Version:

An express wrapper for developing fast web applications

23 lines (20 loc) 316 B
const mongoose = require('mongoose'); const Schema = mongoose.Schema; /** * Log model */ module.exports = new Schema({ level: { type: String, index: true }, message: { type: String, }, meta: { type: Object, }, timestamp: { type: Date } });