您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112
  1. const express = require('express');
  2. const router = express.Router();
  3. const crawlerController = require('../controllers/crawlerController');
  4. /**
  5. * @route GET /api/product
  6. * @desc 获取商品信息
  7. * @access Public
  8. */
  9. router.get('/product', crawlerController.getProductInfo);
  10. module.exports = router;