mirror of
https://github.com/TbT480jcspy/Deluxe-2023-Server-Code.git
synced 2026-09-08 14:41:26 -07:00
20 lines
424 B
C#
20 lines
424 B
C#
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace DeluxeNET.Controllers
|
|
{
|
|
[Route("api/[controller]")]
|
|
[ApiController]
|
|
public class versioncheckController : ControllerBase
|
|
{
|
|
[HttpGet("v4")]
|
|
public IActionResult checkVersion([FromQuery] string v)
|
|
{
|
|
return Ok(new
|
|
{
|
|
VersionStatus = 0
|
|
});
|
|
}
|
|
}
|
|
}
|