Rewrote search func

This commit is contained in:
KimLS
2017-01-24 18:58:37 -08:00
parent e715f5bfa2
commit b6feb258b1
5 changed files with 126 additions and 103 deletions
+2 -3
View File
@@ -1,7 +1,6 @@
var endpoint = require('./endpoint.js');
var RegisterAPI = function(app, api) {
endpoint.Register(app, api, 'item', 'items', 'id', ['name']);
require('./account.js').Register(app, api);
require('./item.js').Register(app, api);
};
module.exports = {