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