todo model

This commit is contained in:
joewaa 2017-06-11 08:45:31 +08:00 committed by GitHub
parent 1e98e41139
commit dfe2628a42

View file

@ -1,5 +1,5 @@
/*
'use strict';
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
@ -24,4 +24,4 @@ var TaskSchema = new Schema({
});
module.exports = mongoose.model('Tasks', TaskSchema);
*/