This repository has been archived on 2023-06-30. You can view files and clone it, but cannot push or open issues or pull requests.
2chBackAPI/Program.cs

26 lines
540 B
C#
Raw Normal View History

2022-10-17 14:29:09 +10:00
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllers();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
2022-10-17 19:59:44 +10:00
//builder.Services.AddSwaggerGen();
2022-10-17 14:29:09 +10:00
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
2022-10-17 19:59:44 +10:00
//app.UseSwagger();
//app.UseSwaggerUI();
2022-10-17 14:29:09 +10:00
}
2022-10-17 19:59:44 +10:00
//app.UseHttpsRedirection();
2022-10-17 14:29:09 +10:00
app.UseAuthorization();
app.MapControllers();
app.Run();