23 lines
364 B
JavaScript
23 lines
364 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
/*
|
|
var fs = require('fs');
|
|
|
|
module.exports.ask = function (query, cb) {
|
|
};
|
|
*/
|
|
|
|
module.exports.query = function (input, query, cb) {
|
|
process.nextTick(function () {
|
|
cb(new Error('No local lookup method for DNS records defined.'));
|
|
});
|
|
/*
|
|
query.question.forEach(function (q) {
|
|
module.exports.ask(q);
|
|
});
|
|
*/
|
|
};
|
|
|
|
}());
|