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

11 lines
165 B
JavaScript
Raw Normal View History

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