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