Files
VORTEX-REC-LEAK/Controllers/Api/GamesightController.cs
T
2026-07-23 18:21:43 -07:00

20 lines
457 B
C#

using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace DeluxeBackend.Controllers.Api
{
[Route("api/gamesight")]//we are not going to fucking pay for gamesight
[ApiController]
public class GamesightController : ControllerBase
{
[HttpPost("event")]
public async Task<IActionResult> Event()
{
return Ok(new
{
Success=true
});
}
}
}