配置文件升级+修改(重要更新!)

This commit is contained in:
2025-06-09 09:22:59 +08:00
parent a548d8f3f2
commit d111c8c2c0
27 changed files with 1880 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
using Microsoft.AspNetCore.Mvc;
using U8Server.Util;
using WebApi.Controllers;
namespace U8Server.Controllers.v1
{
[ApiController]
[Route("/v1/u8/auth")]
public class V1U8AuthController : BaseController
{
private readonly ILogger<V1U8AuthController> _logger;
public V1U8AuthController(ILogger<V1U8AuthController> logger)
{
_logger = logger;
}
[HttpGet(Name = "getMd5")]
[Log(Title = "<22><>ȡmd5<64><35>Կ")]
public string GetMd5()
{
return GetSign.GetBy16Md5();
}
}
}