Added Server View

This commit is contained in:
2026-01-11 20:38:58 +01:00
parent a2c6071960
commit b01cf1fd50
4 changed files with 412 additions and 1 deletions

View File

@@ -25,4 +25,10 @@ public class MonitoringController : Controller
return View();
}
[HttpGet("server")]
public async Task <IActionResult> ServerIndex()
{
return View();
}
}