Initialize repository

Added basic info to get in game for like...August 2016 ;-;
It's not much but it's a start
This commit is contained in:
splootybean
2026-02-27 00:58:13 -08:00
parent 05c35b2a18
commit 387ec7ba89
61 changed files with 1722 additions and 0 deletions
@@ -0,0 +1,16 @@
using Microsoft.AspNetCore.Mvc;
namespace RecRoomArchive.Controllers.API.Avatar.V3
{
[Route(template: "api/[controller]/v3")]
[ApiController]
public class AvatarController() : ControllerBase
{
// TODO: Implement
[HttpGet(template: "items")]
public async Task<ActionResult<List<object>>> GetUnlockedAvatarItems()
{
return Ok(new List<object>());
}
}
}