diff options
-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); |