17 lines
344 B
JavaScript
17 lines
344 B
JavaScript
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;
|