初始化项目

This commit is contained in:
2025-11-20 11:03:29 +08:00
commit 86785bb77f
988 changed files with 325041 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Mvc;
namespace AUTS_Server.Controllers
{
public class LoginController : Controller
{
public IActionResult Index()
{
return View();
}
}
}