From 135a9e75e180f3276cceb4e37415f84906e66016 Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Tue, 20 Aug 2024 19:27:34 -0400 Subject: Add project files. --- PersonalApi/Program.cs | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 PersonalApi/Program.cs (limited to 'PersonalApi/Program.cs') diff --git a/PersonalApi/Program.cs b/PersonalApi/Program.cs new file mode 100644 index 0000000..48863a6 --- /dev/null +++ b/PersonalApi/Program.cs @@ -0,0 +1,25 @@ +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(); +builder.Services.AddSwaggerGen(); + +var app = builder.Build(); + +// Configure the HTTP request pipeline. +if (app.Environment.IsDevelopment()) +{ + app.UseSwagger(); + app.UseSwaggerUI(); +} + +app.UseHttpsRedirection(); + +app.UseAuthorization(); + +app.MapControllers(); + +app.Run(); -- cgit v1.1