wildduck/imap-core/lib/commands/noop.js

11 lines
177 B
JavaScript
Raw Normal View History

2017-03-06 05:45:50 +08:00
'use strict';
module.exports = {
handler(command, callback) {
callback(null, {
response: 'OK',
message: 'Nothing done'
});
}
};