mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-15 09:19:01 -05:00
15 lines
265 B
C#
15 lines
265 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Executable.Controllers;
|
|
|
|
[ApiController]
|
|
[Route("")]
|
|
public class ApiDocumentationController : ControllerBase
|
|
{
|
|
[HttpGet]
|
|
public IActionResult RedirectToSwagger()
|
|
{
|
|
return Redirect("/swagger");
|
|
}
|
|
}
|