Files
RRAC/RecRoomArchive/Controllers/API/Relationships/V2/RelationshipController.cs
T
splootybean 387ec7ba89 Initialize repository
Added basic info to get in game for like...August 2016 ;-;
It's not much but it's a start
2026-02-27 00:58:13 -08:00

15 lines
399 B
C#

using Microsoft.AspNetCore.Mvc;
namespace RecRoomArchive.Controllers.API.Relationships.V2
{
[Route(template: "api/[controller]/v2")]
[ApiController]
public class RelationshipsController : ControllerBase
{
[HttpGet(template: "get")]
public async Task<ActionResult<List<object>>> GetRelationships()
{
return new List<object>();
}
}
}