app.UseEndpoints(endpoints =>
{
endpoints.MapGet("/", async context =>
{
var response = JsonConvert.SerializeObject(StaticValuesConfig.RoleClaims);
context.Response.ContentType = "application/json";
await context.Response.WriteAsync(response);
});
});