From a1e62c11e4fd92759bf730df155c4a5995190177 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sat, 27 Apr 2019 15:28:00 +0100 Subject: [PATCH] Router -> ServerRouter --- Server/Router.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Server/Router.mjs b/Server/Router.mjs index cb14aa0..8484801 100644 --- a/Server/Router.mjs +++ b/Server/Router.mjs @@ -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;