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()); } }