12345678910 |
- 'use strict';
- module.exports = app => {
- const { router, controller } = app;
- // 自动化测试
- router.get('/report/tBoxAuto/index', controller.tBoxAutoTestController.index);
- router.get('/report/tBoxAuto/other', controller.tBoxAutoTestController.other);
- };
|