aboutsummaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
Diffstat (limited to 'src/api')
-rw-r--r--src/api/structures/Server.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/api/structures/Server.js b/src/api/structures/Server.js
index 53be9fb..0ee3ea3 100644
--- a/src/api/structures/Server.js
+++ b/src/api/structures/Server.js
@@ -64,7 +64,6 @@ class Server {
}
registerAllTheRoutes() {
- console.log(Util.config);
jetpack.find(this.routesFolder, { matching: '*.js' }).forEach(routeFile => {
const RouteClass = require(path.join('../../../', routeFile));
let routes = [RouteClass];
@@ -112,7 +111,6 @@ class Server {
const start = async () => {
const conf = await Util.config;
- console.log(conf);
new Server().start();
};