(namespace: string, key: string)
| 21 | import { StorageError, type BlobStore } from "@executor-js/sdk"; |
| 22 | |
| 23 | const objectName = (namespace: string, key: string): string => `${namespace}/${key}`; |
| 24 | |
| 25 | const storeError = (op: string) => (cause: unknown) => |
| 26 | new StorageError({ message: `R2 blob ${op} failed`, cause }); |