Skip to content

Commit

Permalink
try fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
tdykstra committed Apr 20, 2024
1 parent 37a0adb commit f25ab75
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions 4-minimal-api/1-complete/PizzaStore/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@

if (app.Environment.IsDevelopment())
{
app.UseDeveloperExceptionPage();
app.UseSwagger();
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", "PizzaStore API V1");
});
app.UseDeveloperExceptionPage();
app.UseSwagger();
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", "PizzaStore API V1");
});
}

app.MapGet("/", () => "Hello World!");
Expand Down

0 comments on commit f25ab75

Please sign in to comment.