]> git.cworth.org Git - empires-server/commitdiff
Remove old placeholder code for sending "Hello World"
authorCarl Worth <cworth@cworth.org>
Sun, 17 May 2020 19:32:43 +0000 (12:32 -0700)
committerCarl Worth <cworth@cworth.org>
Sun, 17 May 2020 22:36:15 +0000 (15:36 -0700)
Obviously, this was a leftover from some tutorial content, and we
don't really need or want this.

empires.js

index 2794c47ee41006098f3547ec685049eef7f0d520..b744f0faa2e0cc68a8d90963055e1a64a8b7b3ab 100644 (file)
@@ -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();