BaseTestd

This commit is contained in:
Michał Zieliński
2025-06-08 14:21:45 +02:00
parent 34c1ba1483
commit 0795850666
5 changed files with 77 additions and 3 deletions

View File

@@ -20,6 +20,6 @@ public class PingController : Controller
[AllowAnonymous]
public IActionResult Ping()
{
return Ok(_configuration["PONG"]);
return Ok("Pong");
}
}