Files
2026-07-23 18:21:43 -07:00

19 lines
452 B
C#

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace DeluxeBackend.Controllers.Api
{
[Route("api/quickPlay")]
[ApiController]
public class QuickPlayController : ControllerBase
{
[HttpGet("v1/getandclear")]
[Authorize(Roles = "gameClient")]
public async Task<IActionResult> GetAndClear()
{
return Ok(null);
}
}
}