initial
This commit is contained in:
42
Lutra/Lutra.API/Program.cs
Normal file
42
Lutra/Lutra.API/Program.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
|
||||
using Cortex.Mediator.DependencyInjection;
|
||||
using Lutra.Application.Verspakketten;
|
||||
|
||||
namespace Lutra.API
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
builder.Services.AddCortexMediator(
|
||||
configuration: builder.Configuration,
|
||||
handlerAssemblyMarkerTypes: [typeof(Program), typeof(GetVerspakketten)],
|
||||
options => options.AddDefaultBehaviors()
|
||||
);
|
||||
|
||||
builder.Services.AddControllers();
|
||||
// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi
|
||||
builder.Services.AddOpenApi();
|
||||
|
||||
|
||||
var app = builder.Build();
|
||||
|
||||
// Configure the HTTP request pipeline.
|
||||
if (app.Environment.IsDevelopment())
|
||||
{
|
||||
app.MapOpenApi();
|
||||
}
|
||||
|
||||
app.UseHttpsRedirection();
|
||||
|
||||
app.UseAuthorization();
|
||||
|
||||
|
||||
app.MapControllers();
|
||||
|
||||
app.Run();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user