mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
30 lines
551 B
C#
30 lines
551 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using OpenAuth.App.Interface;
|
|
|
|
namespace OpenAuth.Mvc.Controllers
|
|
{
|
|
public class HomeController : BaseController
|
|
{
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public ActionResult Main()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
|
|
|
|
public ActionResult Git()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
|
|
public HomeController(IAuth authUtil) : base(authUtil)
|
|
{
|
|
}
|
|
}
|
|
} |