Initial commit

This commit is contained in:
rudder
2026-08-12 14:03:44 +03:00
commit 9a7b4a57dc
304 changed files with 82311 additions and 0 deletions
@@ -0,0 +1,16 @@
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace RudderSdk.Unity
{
public interface IUnityRequestExecutor
{
Task<string> SendAsync(
string method,
string url,
string body,
IReadOnlyDictionary<string, string> headers,
CancellationToken cancellationToken = default);
}
}