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