2020-08-17 15:54:12 +08:00

15 lines
203 B
JavaScript

const data = [];
module.exports = [
{
url: "/upload",
type: "post",
response(config) {
return {
code: 200,
msg: "success",
data: data,
};
},
},
];