mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-11 12:42:26 +00:00
12 lines
No EOL
287 B
C#
12 lines
No EOL
287 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace LBPUnion.ProjectLighthouse.Servers.API.Controllers;
|
|
|
|
[ApiController]
|
|
[Route("/api/v1")]
|
|
[Produces("application/json")]
|
|
public class StatusController : ControllerBase
|
|
{
|
|
[HttpGet("status")]
|
|
public IActionResult GetStatus() => this.Ok();
|
|
} |