CrtHub / Controllers /HomeController.cs
kank
init
760a5b2 verified
raw
history blame contribute delete
219 Bytes
using Microsoft.AspNetCore.Mvc;
namespace MyMvcApp.Controllers
{
public class HomeController : Controller
{
public IActionResult Index()
{
return View();
}
}
}