aboutsummaryrefslogtreecommitdiff
path: root/RhSolutions.SkuParser.Api/Program.cs
blob: 44c642a50acb89198af2990a36298509e9e4091c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using RhSolutions.SkuParser.Services;

var builder = WebApplication.CreateBuilder(args);
builder.Services
	.AddKeyedScoped<ISkuParser, CsvParser>("text/csv")
	.AddKeyedScoped<ISkuParser, ExcelParser>("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
	.AddKeyedScoped<ISkuParser, ExcelParser>("application/vnd.ms-excel.sheet.macroenabled.12");
builder.Services.AddControllers();

var app = builder.Build();
app.MapControllers();
app.Run();