mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
13 lines
435 B
C#
13 lines
435 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
using Wabbajack.Downloaders.Interfaces;
|
|
using Wabbajack.DTOs;
|
|
|
|
namespace Wabbajack.Downloaders.Bethesda;
|
|
|
|
public static class ServiceExtensions
|
|
{
|
|
public static IServiceCollection AddBethesdaDownloader(this IServiceCollection services)
|
|
{
|
|
return services.AddAllSingleton<IDownloader, IDownloader<DTOs.DownloadStates.Bethesda>, IUrlDownloader, BethesdaDownloader>();
|
|
}
|
|
} |