新增支持s3协议对象存储

This commit is contained in:
eoao
2025-08-31 12:04:19 +08:00
parent c6a7c6b220
commit 0010c7a2b6
27 changed files with 1981 additions and 277 deletions
-5
View File
@@ -21,8 +21,3 @@ app.put('/setting/setBackground', async (c) => {
const key = await settingService.setBackground(c, await c.req.json());
return c.json(result.ok(key));
});
app.delete('/setting/physicsDeleteAll', async (c) => {
await settingService.physicsDeleteAll(c);
return c.json(result.ok());
});
+1 -2
View File
@@ -1,2 +1 @@
import app from '../hono/hono';
import result from '../model/result';