mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-05 23:09:08 -05:00
This commit is contained in:
14
code/Executable/Controllers/ApiDocumentationController.cs
Normal file
14
code/Executable/Controllers/ApiDocumentationController.cs
Normal 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");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user