release/2024-11-15 - Expose S3 client through createS3Client

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-11-14 11:57:40 -08:00
parent c7fc75aa5c
commit e9e1e820a7

View File

@@ -95,14 +95,14 @@ const createS3Client = () => {
throw error;
}
};
return {
uploadFileToS3,
downloadFileFromS3,
listFilesInS3Bucket,
deleteFileFromS3,
copyFileInS3,
fileExistsInS3
fileExistsInS3,
...s3Client
};
};