(key: string, sourcePath: string)
| 32 | async function downloadCache(s3: S3Client, key: string, targetPath: string): Promise<number> { |
| 33 | return downloadFileFromS3(s3, key, targetPath); |
| 34 | } |
| 35 | |
| 36 | async function uploadCache(key: string, sourcePath: string): Promise<number> { |
| 37 | return uploadFileToS3(key, sourcePath); |
| 38 | } |
| 39 |
no test coverage detected