data-display/routes/users.js
Blizzard Finnegan 21c688e961 v0.0.1: Proof of Concept for PDR (#4)
Completed initial proof of concept; finished initialisation of project with necessary dependencies.

Reviewed-on: #4
Reviewed-by: Isaacsouthwell <ias4117@rit.edu>
Co-authored-by: Blizzard Finnegan <blizzardfinnegan@gmail.com>
Co-committed-by: Blizzard Finnegan <blizzardfinnegan@gmail.com>
2024-03-29 11:13:35 -04:00

9 lines
203 B
JavaScript

var express = require('express');
var router = express.Router();
/* GET users listing. */
router.get('/', function(req, res, next) {
res.send('respond with a resource');
});
module.exports = router;