yd-header
Version:
> yd-header
17 lines • 374 B
JavaScript
/*
* @Description: getBoardConfig
* @Author: huangyanmei
* @Date: 2021-06-07 16:40:06
*/
module.exports = function(app) {
/* 这里的 app 是 express 创建的一个应用 */
// get
app.get('/cep/board/getBoardConfig', function(req, res) {
res.json({
"code": 200,
"message": "操作成功",
"cacheTime": null,
"data": true
})
});
}