db access by sequalize

This commit is contained in:
Takeshi Kimata
2024-02-04 21:32:16 +09:00
parent 45f64df1f9
commit bad8f4ccb4
4 changed files with 30 additions and 10 deletions

View File

@@ -3,7 +3,7 @@ const router = express.Router();
// "/" GET
router.get('/', (req, res) => {
res.send('This is the main page!');
res.send('Test Case Management API Server');
});
module.exports = router;