using RhSolutions.SkuParser.Abstractions; using RhSolutions.SkuParser.Api.Services; using RhSolutions.SkuParser.Services; var builder = WebApplication.CreateBuilder(args); builder.Configuration .AddJsonFile("appsettings.json"); builder.Services .AddKeyedScoped("text/csv") .AddKeyedScoped("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet") .AddKeyedScoped("application/vnd.ms-excel.sheet.macroenabled.12") .AddKeyedScoped("BS"); builder.Services.AddControllers(); var app = builder.Build(); app.MapControllers(); app.Run();