2021-09-27 12:42:46 +00:00
|
|
|
using System.Net.Http;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using Wabbajack.DTOs.JsonConverters;
|
|
|
|
using Wabbajack.Networking.WabbajackClientApi;
|
2021-10-23 18:36:35 +00:00
|
|
|
using Wabbajack.Services.OSIntegrated;
|
2021-09-27 12:42:46 +00:00
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
namespace Wabbajack.DTOs.Test;
|
|
|
|
|
|
|
|
public class Startup
|
2021-09-27 12:42:46 +00:00
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
public void ConfigureServices(IServiceCollection services)
|
2021-09-27 12:42:46 +00:00
|
|
|
{
|
2021-10-23 18:36:35 +00:00
|
|
|
services.AddOSIntegrated();
|
2021-09-27 12:42:46 +00:00
|
|
|
}
|
|
|
|
}
|