mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 13:24:34 +01:00
14 lines
324 B
C#
14 lines
324 B
C#
using KianaBH.Data.Models.Sdk;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace KianaBH.SdkServer.Models.Sdk;
|
|
|
|
[ApiController]
|
|
public class RiskyController : ControllerBase
|
|
{
|
|
[HttpPost("/account/risky/api/check")]
|
|
public IActionResult ComboGranter()
|
|
{
|
|
return Ok(new ResponseBase { Data = new { } });
|
|
}
|
|
} |