diff --git a/Program.cs b/Program.cs index fb47ecb..2b5db35 100644 --- a/Program.cs +++ b/Program.cs @@ -101,21 +101,5 @@ app.UseEndpoints(endpoints => 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();