This commit is contained in:
Flaminel
2025-05-14 22:42:52 +03:00
parent 461e935128
commit 69788d55d2
11 changed files with 1141 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
using Microsoft.AspNetCore.Mvc;
namespace Executable.Controllers;
[ApiController]
[Route("")]
public class ApiDocumentationController : ControllerBase
{
[HttpGet]
public IActionResult RedirectToSwagger()
{
return Redirect("/swagger");
}
}