2021-09-27 12:42:46 +00:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using Wabbajack.Downloaders.Interfaces;
|
|
|
|
using Wabbajack.DTOs;
|
2021-10-23 16:51:17 +00:00
|
|
|
using Wabbajack.DTOs.DownloadStates;
|
2021-09-27 12:42:46 +00:00
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
namespace Wabbajack.Downloaders.IPS4OAuth2Downloader;
|
|
|
|
|
|
|
|
public static class ServiceExtensions
|
2021-09-27 12:42:46 +00:00
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
public static IServiceCollection AddIPS4OAuth2Downloaders(this IServiceCollection services)
|
2021-09-27 12:42:46 +00:00
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
return services
|
|
|
|
.AddAllSingleton<IDownloader, IDownloader<LoversLab>, LoversLabDownloader>()
|
|
|
|
.AddAllSingleton<IDownloader, IDownloader<VectorPlexus>, VectorPlexusDownloader>();
|
2021-09-27 12:42:46 +00:00
|
|
|
}
|
|
|
|
}
|