pc.js 298 B

1234567891011121314151617
  1. // 附件
  2. import express from "express";
  3. const router = express.Router();
  4. router.use(function timeLog(req, res, next) {
  5. console.log("Time: ", Date.now());
  6. next();
  7. });
  8. // define the about route
  9. router.get("/about", function (req, res) {
  10. res.send("About files");
  11. });
  12. export default router;