mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-02 02:47:52 -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");
|
|
}
|
|
}
|