Windshaft-cartodb/lib/backends/layer-stats/torque-layer-stats.js
2019-10-21 19:07:24 +02:00

19 lines
360 B
JavaScript

'use strict';
function TorqueLayerStats () {
this._types = {
torque: true
};
}
TorqueLayerStats.prototype.is = function (type) {
return this._types[type] ? this._types[type] : false;
};
TorqueLayerStats.prototype.getStats =
function (layer, dbConnection, callback) {
return callback(null, {});
};
module.exports = TorqueLayerStats;