const router = require("express").Router(); router.get("/", (req, res) => { res.send({ status: 'testing in progress' }); }); module.exports = router;