Add StatusController, improve local game logic, and enable Swagger in API

This commit is contained in:
2026-02-22 19:01:43 +01:00
committed by Jonas
parent 7395b6d3bf
commit f98d9e79b2
8 changed files with 218 additions and 7 deletions
+14
View File
@@ -0,0 +1,14 @@
using Microsoft.AspNetCore.Mvc;
namespace API.Controllers;
[ApiController]
[Route("[controller]")]
public class StatusController : ControllerBase
{
[HttpGet]
public IActionResult Get()
{
return Ok("Running");
}
}