c9-core/plugins/c9.cli.sync/sync-server.js

13 wiersze
286 B
JavaScript

module.exports = function (vfs, options, register) {
//@todo hook into vfs and notify client of changes
register(null, {
connect: function(callback) {
var stream;
callback(null, stream);
},
remove: function (a, b, callback) {
callback();
}
});
};