vumichien commited on
Commit
02d0094
·
1 Parent(s): aae5d2b

Update routes/index.js

Browse files
Files changed (1) hide show
  1. routes/index.js +4 -0
routes/index.js CHANGED
@@ -24,4 +24,8 @@ router.post('/chat', async function(req, res, next) {
24
  }
25
  });
26
 
 
 
 
 
27
  module.exports = router;
 
24
  }
25
  });
26
 
27
+ router.get('/', function(req, res, next) {
28
+ res.send("AI avatar backend is running.");
29
+ });
30
+
31
  module.exports = router;