2017-08-30 18:16:06 +08:00
|
|
|
|
using System.Text;
|
2016-10-14 11:22:16 +08:00
|
|
|
|
using System.Web.Mvc;
|
2015-09-22 23:10:00 +08:00
|
|
|
|
|
|
|
|
|
namespace OpenAuth.Mvc.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class HomeController : BaseController
|
|
|
|
|
{
|
2015-11-22 21:32:38 +08:00
|
|
|
|
|
2015-09-22 23:10:00 +08:00
|
|
|
|
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
|
|
|
|
|
2018-04-04 11:59:18 +08:00
|
|
|
|
|
2015-09-22 23:10:00 +08:00
|
|
|
|
}
|
2015-09-20 21:59:36 +08:00
|
|
|
|
}
|