using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace LayUICore.Areas.Admin.Controllers
{
public class IndexController : Controller
{
[Area("Admin")]
public IActionResult Index()
{
//https://q.cnblogs.com/q/126307/
return View();
}
}
}