summaryrefslogtreecommitdiff
path: root/Controllers/HomeController.cs
blob: a9cdaa5f0ab44388dd0a9cf53a85edc316c5a94d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using Microsoft.AspNetCore.Mvc;

namespace MyDarling.Controllers
{
	public class HomeController : Controller
	{
		public IActionResult Index()
		{
			return View();
		}
	}
}