Rooni commited on
Commit
1e14015
·
verified ·
1 Parent(s): 3ec69c8

Update server.js

Browse files
Files changed (1) hide show
  1. server.js +4 -0
server.js CHANGED
@@ -108,6 +108,10 @@ app.post('/chat', async (req, res) => {
108
  }
109
  });
110
 
 
 
 
 
111
  app.listen(PORT, () => {
112
  console.log(`Server is running on port ${PORT}`);
113
  });
 
108
  }
109
  });
110
 
111
+ app.get('/', async (req, res) => {
112
+ console.log(`Server is checked`);
113
+ });
114
+
115
  app.listen(PORT, () => {
116
  console.log(`Server is running on port ${PORT}`);
117
  });