Api/Netina.Api/Controllers/HomeController.cs

15 lines
274 B
C#

using Netina.Api.Views.Home;
namespace Netina.Api.Controllers;
[Route("")]
[AllowAnonymous]
public class HomeController : Microsoft.AspNetCore.Mvc.Controller
{
[HttpGet]
public IActionResult Index()
{
return View("Index", new IndexModel());
}
}