reorganized project

This commit is contained in:
Flaminel
2025-06-17 18:11:18 +03:00
parent d76216665b
commit e5d7d8ed12
264 changed files with 1137 additions and 1123 deletions

View File

@@ -0,0 +1,16 @@
using Cleanuparr.Persistence.Models.Configuration;
namespace Cleanuparr.Infrastructure.Http;
/// <summary>
/// Interface for a provider that creates HTTP clients dynamically based on client configuration
/// </summary>
public interface IDynamicHttpClientProvider
{
/// <summary>
/// Creates an HTTP client configured for the specified download client
/// </summary>
/// <param name="downloadClientConfig">The client configuration</param>
/// <returns>A configured HttpClient instance</returns>
HttpClient CreateClient(DownloadClientConfig downloadClientConfig);
}