初始化

This commit is contained in:
2025-11-20 09:56:11 +08:00
commit f19e6ad613
87 changed files with 75630 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
using AutoNotificatPhone.Models;
using Microsoft.AspNetCore.Mvc;
using NLog;
using System.Diagnostics;
namespace AutoNotificatPhone.Controllers
{
public class HomeController : Controller
{
private readonly ILogger<HomeController> _logger;
public static Logger logger = LogManager.GetCurrentClassLogger();
public HomeController(ILogger<HomeController> logger)
{
_logger = logger;
}
public IActionResult Index()
{
return View();
}
public IActionResult Privacy()
{
return View();
}
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
[HttpPost]
public string Halo()
{
//logger.Error("halo,test");
return "success";
}
}
}