mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
21 lines
660 B
C#
21 lines
660 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
using Wabbajack.Downloaders.GameFile;
|
|
using Wabbajack.Downloaders.Interfaces;
|
|
using Wabbajack.DTOs;
|
|
using Wabbajack.DTOs.DownloadStates;
|
|
|
|
namespace Wabbajack.Downloaders;
|
|
|
|
public static class ServiceExtensions
|
|
{
|
|
public static IServiceCollection AddGameFileDownloader(this IServiceCollection services)
|
|
{
|
|
return services.AddAllSingleton<IDownloader, IDownloader<GameFileSource>,
|
|
GameFileDownloader>();
|
|
}
|
|
|
|
public static IServiceCollection AddStandardGameLocator(this IServiceCollection services)
|
|
{
|
|
return services.AddAllSingleton<IGameLocator, GameLocator>();
|
|
}
|
|
} |