DD.Keycloak.Client/DD.Keycloak.Client.Web/Program.cs

24 lines
336 B
C#
Raw Permalink Normal View History

2025-01-15 17:09:56 +05:00
using DD.Keycloak.Client;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllers();
builder.Services.AddTest();
var app = builder.Build();
// Configure the HTTP request pipeline.
app.UseHttpsRedirection();
app.UseAuthorization();
app.MapControllers();
app.Run();