generated from esd2-groupwork/template-repository
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>
9 lines
203 B
JavaScript
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;
|