clear task model

This commit is contained in:
joewaa 2017-06-11 06:42:55 +08:00 committed by GitHub
parent 0ebc5b3a5c
commit 56c6607f51

View file

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