mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-11-11 01:54:04 +08:00
10 lines
165 B
JavaScript
10 lines
165 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
state: ['Selected'],
|
|
handler(command, callback) {
|
|
callback(null, {
|
|
response: 'OK'
|
|
});
|
|
}
|
|
};
|