using RhSolutions.SkuParser.Services; var builder = WebApplication.CreateBuilder(args); builder.Services.AddKeyedScoped("text/csv"); builder.Services.AddControllers(); var app = builder.Build(); app.MapControllers(); app.Run();