test code

This commit is contained in:
董海洋
2026-05-23 15:39:33 +08:00
parent 58b73d3a70
commit 0e15d80625
+1 -1
View File
@@ -39,7 +39,7 @@ router.post('/', upload.single('file'), async (ctx) => {
const fileUrl = `http://110.42.255.239:3005/uploads/${ctx.file.filename}`
ctx.body = {
code: 200,
message: '上传成功',
message: '上传成功!!',
url: fileUrl
}
})