From 74ae0ff19c7a25caf39944ebbf25202f31e48bf8 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 17 May 2020 12:32:43 -0700 Subject: [PATCH] Remove old placeholder code for sending "Hello World" Obviously, this was a leftover from some tutorial content, and we don't really need or want this. --- empires.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/empires.js b/empires.js index 2794c47..b744f0f 100644 --- a/empires.js +++ b/empires.js @@ -250,10 +250,6 @@ function handle_events(request, response) { }); } -app.get('/', (request, response) => { - response.send('Hello World!'); -}); - app.post('/register', (request, response) => { game.add_player(request.body.name, request.body.character); response.send(); -- 2.43.0