From b8fa6f7418c45785767bff42f9857af08fc9d891 Mon Sep 17 00:00:00 2001 From: Sergey Chebotar Date: Tue, 31 Jan 2023 14:54:32 +0300 Subject: Initial commit --- Controllers/HomeController.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Controllers/HomeController.cs (limited to 'Controllers/HomeController.cs') diff --git a/Controllers/HomeController.cs b/Controllers/HomeController.cs new file mode 100644 index 0000000..a9cdaa5 --- /dev/null +++ b/Controllers/HomeController.cs @@ -0,0 +1,12 @@ +using Microsoft.AspNetCore.Mvc; + +namespace MyDarling.Controllers +{ + public class HomeController : Controller + { + public IActionResult Index() + { + return View(); + } + } +} \ No newline at end of file -- cgit v1.2.3