chore: prettier pass

This commit is contained in:
Huskydog9988
2025-04-15 21:46:34 -04:00
parent d361e01eef
commit 87215c4a1e
62 changed files with 247 additions and 236 deletions

View File

@ -30,7 +30,7 @@ export default defineEventHandler(async (h3) => {
setHeader(
h3,
"Cache-Control",
"private, max-age=31536000, s-maxage=31536000, immutable"
"private, max-age=31536000, s-maxage=31536000, immutable",
);
return object.data;
});

View File

@ -18,7 +18,7 @@ export default defineEventHandler(async (h3) => {
const result = await objectHandler.writeWithPermissions(
id,
async () => buffer,
userId
userId,
);
return { success: result };
});