2020-10-22 14:59:36 +08:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using OpenAuth.App.Interface;
|
2015-09-22 23:10:00 +08:00
|
|
|
|
|
|
|
|
|
namespace OpenAuth.Mvc.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class HomeController : BaseController
|
|
|
|
|
{
|
|
|
|
|
public ActionResult Index()
|
2016-10-14 11:22:16 +08:00
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-30 17:15:05 +08:00
|
|
|
|
public ActionResult Main()
|
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
2017-08-30 18:16:06 +08:00
|
|
|
|
|
2017-08-31 19:23:29 +08:00
|
|
|
|
|
2016-01-14 17:30:29 +08:00
|
|
|
|
|
2015-12-01 22:46:29 +08:00
|
|
|
|
public ActionResult Git()
|
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
2015-12-06 00:05:32 +08:00
|
|
|
|
|
2020-10-22 14:59:36 +08:00
|
|
|
|
|
|
|
|
|
public HomeController(IAuth authUtil) : base(authUtil)
|
|
|
|
|
{
|
|
|
|
|
}
|
2015-09-22 23:10:00 +08:00
|
|
|
|
}
|
2015-09-20 21:59:36 +08:00
|
|
|
|
}
|