Files
Deluxe-2023-Server-Code/Controllers/consumablesController.cs
T
Exception 1f113298e0 Movement
2026-05-09 14:31:53 -04:00

17 lines
371 B
C#

using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace DeluxeNET.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class consumablesController : ControllerBase
{
[HttpGet("v2/getUnlocked")]
public IActionResult getUnlockedCons()
{
return Ok(new List<object>());
}
}
}