Files
components/LiteCharms.Features/S3/Abstractions/IS3Service.cs
T
Khwezi Mngoma 52d204e286
continuous-integration/drone/pr Build is passing
Refactored service to internalise the CDN
2026-05-19 11:34:00 +02:00

7 lines
228 B
C#

namespace LiteCharms.Features.S3.Abstractions;
public interface IS3Service
{
Task<Result<string>> UploadFileAsync(string fileName, Stream fileStream, string contentType, CancellationToken cancellationToken = default);
}