Multi-Platform Package Manager for Stable Diffusion
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
845 B

1 year ago
using Refit;
namespace StabilityMatrix.Core.Api;
public class ApiFactory : IApiFactory
1 year ago
{
private readonly IHttpClientFactory httpClientFactory;
public RefitSettings? RefitSettings { get; init; }
1 year ago
public ApiFactory(IHttpClientFactory httpClientFactory)
{
this.httpClientFactory = httpClientFactory;
}
public T CreateRefitClient<T>(Uri baseAddress)
{
var httpClient = httpClientFactory.CreateClient(nameof(T));
httpClient.BaseAddress = baseAddress;
return RestService.For<T>(httpClient, RefitSettings);
}
public T CreateRefitClient<T>(Uri baseAddress, RefitSettings refitSettings)
{
var httpClient = httpClientFactory.CreateClient(nameof(T));
httpClient.BaseAddress = baseAddress;
return RestService.For<T>(httpClient, refitSettings);
}
1 year ago
}