From a6a8bd307bd366a71faf4cb60b5db59f5aa0267d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Henrique?= Date: Sun, 29 Oct 2023 19:03:14 -0300 Subject: [PATCH] small fix heh --- ASP.NET/Controllers/SimulationController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ASP.NET/Controllers/SimulationController.cs b/ASP.NET/Controllers/SimulationController.cs index 42ba277..dfcd4b5 100644 --- a/ASP.NET/Controllers/SimulationController.cs +++ b/ASP.NET/Controllers/SimulationController.cs @@ -24,7 +24,7 @@ namespace TCC.Controllers } [HttpGet("json")] - public async Task GetHarmonicProgression([FromQuery] int n) + public async Task GetJsonResponse() { return Ok(new { message = "Hello World!" }); }