1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
RhSolutions.SkuParser/RhSolutions.SkuParser.Api/Program.cs

9 lines
252 B
C#

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();