Merge branch 'j1/hello_world' into dev

This commit is contained in:
Loic Masi
2026-03-04 13:23:10 +01:00
2 changed files with 7 additions and 1 deletions

View File

@@ -12,6 +12,12 @@ public class ApiController : ControllerBase
this._logger.LogDebug(1, "NLog injected into VersionController");
}
[HttpGet]
public string HelloWorld()
{
return "Hello World !";
}
[HttpGet]
public IActionResult Version()
{