Files
mixtape/zero.Debug/Controllers/HomeController.cs
T

17 lines
300 B
C#
Raw Normal View History

2020-05-12 12:13:25 +02:00
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace zero.Debug.Controllers
{
public class HomeController : Controller
{
[HttpGet]
public IActionResult Index()
{
return View();
}
}
}