Initial commit

This commit is contained in:
rudder
2026-08-12 14:04:55 +03:00
commit 8cf738d9f0
124 changed files with 5433 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
using System.Threading;
using System.Threading.Tasks;
namespace RudderSdk.Core.Abstractions;
/// <summary>
/// Uploads raw bytes to pre-signed UGC URLs. Optional; required only by
/// <see cref="UgcService.UploadAsync"/>.
/// </summary>
public interface IUploadTransport
{
/// <summary>PUTs the payload to the pre-signed URL with the given content type.</summary>
Task PutAsync(string url, byte[] data, string contentType, CancellationToken cancellationToken = default);
}