'use strict'; const openapi = require('../controllers/openapi'); module.exports = function (app, router, opts) { const { middlewares: { auth } } = app router.post('/v1/imageUnderstanding', openapi.imageUnderstanding, { content: '图像理解', visible: true }); };