Api/Brizco.Api/Controllers/HomeController.cs

15 lines
250 B
C#
Raw Normal View History

using Brizco.Api.Views.Home;
namespace Brizco.Api.Controllers;
[Route("")]
[AllowAnonymous]
public class HomeController : Controller
{
[HttpGet]
public IActionResult Index()
{
2023-11-26 16:56:38 +03:30
return View("Index", new IndexModel());
}
}