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