wildduck/imap-core/lib/commands/noop.js
2017-03-05 23:45:50 +02:00

11 lines
177 B
JavaScript

'use strict';
module.exports = {
handler(command, callback) {
callback(null, {
response: 'OK',
message: 'Nothing done'
});
}
};