Add remaining project files
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user