Router -> ServerRouter

This commit is contained in:
Starbeamrainbowlabs 2019-04-27 15:28:00 +01:00
parent 1e56527f44
commit a1e62c11e4
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ import { pathspec_to_regex } from '../Shared/Pathspec.mjs';
* simplified.
* @param {Boolean} verbose Whether to be verbose and log a bunch of things to the console. Useful for debugging.
*/
class Router
class ServerRouter
{
constructor(verbose = false) {
/** The actions to run in turn. */
@ -179,4 +179,4 @@ class Router
}
}
export default Router;
export default ServerRouter;