diff options
author | Thomas Voss <thomasvoss@live.com> | 2022-01-06 16:24:13 +0100 |
---|---|---|
committer | Thomas Voss <thomasvoss@live.com> | 2022-01-06 16:24:13 +0100 |
commit | 5c992e4a7c979b12422cd219597dfc829b494364 (patch) | |
tree | 4e7a1a4cb4a1c8fb10acec72492d04bbf3d0fd4b | |
parent | fbe3b36f06ca29aa28c4c58f98e54a0062a1955e (diff) |
Remove useless line
-rw-r--r-- | draughts/app.js | 4 |
1 files changed, 1 insertions, 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); |