Removing comments

This commit is contained in:
kdeng00
2024-06-13 20:38:04 -04:00
parent 48f9914a1f
commit 4cbb0b9429
-16
View File
@@ -101,21 +101,5 @@ app.UseEndpoints(endpoints =>
endpoints.MapControllers(); endpoints.MapControllers();
}); });
/**
app.MapGet("/weatherforecast", () =>
{
var forecast = Enumerable.Range(1, 5).Select(index =>
new WeatherForecast
(
DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
Random.Shared.Next(-20, 55),
summaries[Random.Shared.Next(summaries.Length)]
))
.ToArray();
return forecast;
})
.WithName("GetWeatherForecast")
.WithOpenApi();
*/
app.Run(); app.Run();