mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
18 lines
539 B
C#
18 lines
539 B
C#
|
using CG.Web.MegaApiClient;
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
using Wabbajack.Downloaders.Interfaces;
|
||
|
using Wabbajack.DTOs;
|
||
|
|
||
|
namespace Wabbajack.Downloaders.ModDB
|
||
|
{
|
||
|
public static class ServiceExtensions
|
||
|
{
|
||
|
public static IServiceCollection AddMegaDownloader(this IServiceCollection services)
|
||
|
{
|
||
|
|
||
|
return services
|
||
|
.AddSingleton<MegaApiClient>()
|
||
|
.AddAllSingleton<IDownloader, IDownloader<DTOs.DownloadStates.Mega>, MegaDownloader>();
|
||
|
}
|
||
|
}
|
||
|
}
|