mirror of
https://github.com/TbT480jcspy/Iris-Rec-2023-Server-Code.git
synced 2026-09-08 14:41:24 -07:00
MOVEMENT
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace ir23.Controllers
|
||||
{
|
||||
[Route("[controller]")]
|
||||
[ApiController]
|
||||
public class econController : ControllerBase
|
||||
{
|
||||
[HttpGet("customAvatarItems/v1/owned")]
|
||||
public IActionResult ownedavataritemscustom()
|
||||
{
|
||||
return Ok(new
|
||||
{
|
||||
Results = new List<object>(),
|
||||
TotalResults = 0
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user