UNPKG

silk-gui

Version:

GUI for developers and Node OS

13 lines (9 loc) 257 B
var db = require('../db.js'); var externalApps = db.collections.appId; function removeApp(path) { console.log('removing app ' + path); externalApps.remove({ path: path }, function () { console.log('finished'); }); } module.exports = removeApp;