1
0
Fork 0
mirror of https://github.com/sbrl/powahroot.git synced 2024-11-24 15:13:00 +00:00

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

View file

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