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

17 lines
362 B
C#

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