1tbfree commited on
Commit
39f7449
·
verified ·
1 Parent(s): 1cc9400

Update server.js

Browse files
Files changed (1) hide show
  1. server.js +3 -0
server.js CHANGED
@@ -21,6 +21,9 @@ app.get('/run', (req, res) => {
21
  res.send(`${stdout}`);
22
  });
23
  });
 
 
 
24
 
25
  app.listen(port, () => {
26
  console.log(`Server running at http://localhost:${port}`);
 
21
  res.send(`${stdout}`);
22
  });
23
  });
24
+ app.get('/', (req, res) {
25
+ return "nope";
26
+ }
27
 
28
  app.listen(port, () => {
29
  console.log(`Server running at http://localhost:${port}`);