Optimised UploadFileAsync()
continuous-integration/drone/pr Build is passing

Implemented and tested DeleteFileAsync()
This commit is contained in:
Khwezi Mngoma
2026-05-20 15:32:54 +02:00
parent d6fdf1b9c8
commit ccf30ac36b
5 changed files with 80 additions and 6 deletions
@@ -3,4 +3,5 @@
public interface IS3Service
{
Task<Result<string>> UploadFileAsync(string fileName, Stream fileStream, string contentType, CancellationToken cancellationToken = default);
Task<Result> DeleteFileAsync(string fileKey, CancellationToken cancellationToken = default);
}