Remove duplicated module.exports

This commit is contained in:
Raul Ochoa 2015-06-04 20:14:36 -04:00
parent 539b0496bf
commit 6685b759b2
2 changed files with 0 additions and 4 deletions

View File

@ -14,5 +14,3 @@ module.exports = FastlyCacheBackend;
FastlyCacheBackend.prototype.invalidate = function(cacheObject, callback) {
this.fastlyPurge.key(this.serviceId, cacheObject.key(), callback);
};
module.exports = FastlyCacheBackend;

View File

@ -28,5 +28,3 @@ VarnishHttpCacheBackend.prototype.invalidate = function(cacheObject, callback) {
}
);
};
module.exports = VarnishHttpCacheBackend;