Files
asesidaa_GC-local-server-re…/MainServer/Controllers/Game/UpdateController.cs
T

15 lines
304 B
C#

using Microsoft.AspNetCore.Mvc;
namespace MainServer.Controllers.Game;
[ApiController]
[Route("update/cgi")]
public class UpdateController : ControllerBase
{
// TODO: Check update properly
[HttpGet("check.php")]
public IActionResult UpdateCheck()
{
return NotFound();
}
}