mirror of
https://git.recroomarchive.org/RecRoomArchive/RRAC.git
synced 2026-09-08 14:41:25 -07:00
15 lines
389 B
C#
15 lines
389 B
C#
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>();
|
|
}
|
|
}
|
|
} |