19 lines
373 B
C#
19 lines
373 B
C#
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace PurchaseBff.Controllers
|
|||
|
{
|
|||
|
[Route("")]
|
|||
|
public class HomeController : Controller
|
|||
|
{
|
|||
|
[HttpGet()]
|
|||
|
public IActionResult Index()
|
|||
|
{
|
|||
|
return new RedirectResult("~/swagger");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|