mirror of
https://github.com/TbT480jcspy/Deluxe-2023-Server-Code.git
synced 2026-09-08 14:41:26 -07:00
17 lines
354 B
C#
17 lines
354 B
C#
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace DeluxeNET.Controllers
|
|
{
|
|
[Route("api/[controller]")]
|
|
[ApiController]
|
|
public class quickPlayController : ControllerBase
|
|
{
|
|
[HttpGet("v1/getandclear")]
|
|
public IActionResult getandclear()
|
|
{
|
|
return Ok(new { });
|
|
}
|
|
}
|
|
}
|