From 5c992e4a7c979b12422cd219597dfc829b494364 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Thu, 6 Jan 2022 16:24:13 +0100 Subject: Remove useless line --- draughts/app.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/draughts/app.js b/draughts/app.js index a890b9b..1e928f1 100644 --- a/draughts/app.js +++ b/draughts/app.js @@ -1,8 +1,6 @@ const express = require("express"); const http = require("http"); - const indexRouter = require("./routes/index"); -const messages = require("./public/javascripts/messages"); const port = process.argv[2]; const app = express(); @@ -11,4 +9,4 @@ app.get("/play", indexRouter); app.get("/", indexRouter); app.use(express.static(__dirname + "/public")); -http.createServer(app).listen(port); \ No newline at end of file +http.createServer(app).listen(port); -- cgit v1.2.3