diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-01-31 14:54:32 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-01-31 14:54:32 +0300 |
commit | b8fa6f7418c45785767bff42f9857af08fc9d891 (patch) | |
tree | 344c7ddd1f6664176d9388627db5fe03939782b1 /Controllers/HomeController.cs |
Initial commit
Diffstat (limited to 'Controllers/HomeController.cs')
-rw-r--r-- | Controllers/HomeController.cs | 12 |
1 files changed, 12 insertions, 0 deletions
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 |