17 lines
300 B
C#
17 lines
300 B
C#
|
|
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();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|