You can not 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
327 B
11 lines
327 B
2 years ago
|
'use strict';
|
||
|
|
||
|
const backups = require('../../controllers/homepage/index');
|
||
|
|
||
|
module.exports = function (app, router, opts, AuthCode) {
|
||
|
|
||
|
app.fs.api.logAttr['GET/homepage/node/resources'] = { content: '获取节点资源信息', visible: true };
|
||
|
router.get('/homepage/node/resources', backups.getNodeResources(opts))
|
||
|
|
||
|
};
|