More changes...

This commit is contained in:
splootybean
2026-02-27 19:30:49 -08:00
parent 20fdf60665
commit b64e257b9a
36 changed files with 553 additions and 63 deletions
@@ -0,0 +1,15 @@
using Microsoft.AspNetCore.Mvc;
namespace RecRoomArchive.Controllers.API.Events.V3
{
[Route(template: "api/[controller]/v3")]
[ApiController]
public class EventsController : ControllerBase
{
[HttpGet(template: "list")]
public async Task<ActionResult<List<object>>> GetActiveEventsList()
{
return new List<object>();
}
}
}