ccf30ac36b
continuous-integration/drone/pr Build is passing
Implemented and tested DeleteFileAsync()
8 lines
325 B
C#
8 lines
325 B
C#
namespace LiteCharms.Features.S3.Abstractions;
|
|
|
|
public interface IS3Service
|
|
{
|
|
Task<Result<string>> UploadFileAsync(string fileName, Stream fileStream, string contentType, CancellationToken cancellationToken = default);
|
|
Task<Result> DeleteFileAsync(string fileKey, CancellationToken cancellationToken = default);
|
|
}
|