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