mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-01-07 00:17:37 +08:00
10 lines
177 B
JavaScript
10 lines
177 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
handler(command, callback) {
|
|
callback(null, {
|
|
response: 'OK',
|
|
message: 'Nothing done'
|
|
});
|
|
}
|
|
};
|