Files
bamboo/extend/body/index.js
T
2022-07-07 22:16:39 +08:00

11 lines
181 B
JavaScript

/**
* 封装api返回结果
*/
const config = require("./config")
const body = require("./body")
module.exports = async (app) => {
app.res = body
app.alias["$res"] = app.res
}