Rebuild docs

This commit is contained in:
Amish Shah
2016-08-19 20:10:28 +01:00
parent ed818d6e7f
commit fb55b6dc60
4 changed files with 16 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
* A base class for different types of rate limiting handlers for the REST API.
* @private
*/
module.exports = class RequestHandler {
class RequestHandler {
constructor(restManager) {
/**
* The RESTManager that instantiated this RequestHandler
@@ -43,4 +43,6 @@ module.exports = class RequestHandler {
handle() {
}
};
}
module.exports = RequestHandler;