mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-04-19 19:14:51 +00:00
* 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
9 lines
No EOL
208 B
C#
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
|
|
{ } |