Skip to content
Permalink
c4a44da9d0
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
@nroy
Latest commit 79a2529 Dec 5, 2023 History
1 contributor

Users who have contributed to this file

9 lines (7 sloc) 203 Bytes
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;