ProjectLighthouse/ProjectLighthouse.Servers.API/ApiEndpointController.cs
Josh f1c5ad4002
Major refactor and reorganization of types (#652)
* Start of reorganization and cleanup

* Remove duplicate title id

* Refactor types

* Fix Release building

* Move classes in /Types to a Types namespace

* Fix compilation error (RoomVisualizerPage strikes again)

* Fix bugs created from auto merge

* Fix auto-merge compilation error

* Changes from review/fix failed merge
2023-02-13 22:02:58 -06:00

9 lines
No EOL
208 B
C#

using Microsoft.AspNetCore.Mvc;
namespace LBPUnion.ProjectLighthouse.Servers.API;
[ApiController]
[Route("/api/v1")]
[Produces("application/json")]
public class ApiEndpointController : ControllerBase
{ }