2021-09-27 12:42:46 +00:00
|
|
|
using CG.Web.MegaApiClient;
|
|
|
|
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.ModDB;
|
|
|
|
|
|
|
|
public static class ServiceExtensions
|
2021-09-27 12:42:46 +00:00
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
public static IServiceCollection AddMegaDownloader(this IServiceCollection services)
|
2021-09-27 12:42:46 +00:00
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
return services
|
|
|
|
.AddSingleton<MegaApiClient>()
|
|
|
|
.AddAllSingleton<IDownloader, IDownloader<Mega>, MegaDownloader>();
|
2021-09-27 12:42:46 +00:00
|
|
|
}
|
|
|
|
}
|