feat: add R2 storage client module with upload, delete, list, metadata

This commit is contained in:
2026-05-09 12:46:47 +08:00
parent f59ef61634
commit 393bc9a9c6
2 changed files with 149 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
export {
uploadObject,
deleteObject,
listObjects,
getObjectMetadata,
isR2Configured,
getR2PublicUrl,
isR2Url,
getR2ConfigStatus,
} from "./r2-client"
export type { ObjectInfo, ObjectMetadata } from "./r2-client"