You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
252 B
JavaScript
11 lines
252 B
JavaScript
|
7 months ago
|
const express = require('express');
|
||
|
|
const router = express.Router();
|
||
|
|
|
||
|
|
/* GET users listing. */
|
||
|
|
router.get('/', function(req, res, next) {
|
||
|
|
res.send('respond with a resource');
|
||
|
|
//res.json({message:'Hello 长乐未央'})
|
||
|
|
});
|
||
|
|
|
||
|
|
module.exports = router;
|