mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-07-01 16:33:43 -04:00
Add initial API & Configuration
This commit is contained in:
12
Pulsar/Features/Status/StatusController.cs
Normal file
12
Pulsar/Features/Status/StatusController.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace Pulsar.Features.Status;
|
||||
|
||||
[ApiController]
|
||||
[Route("api/status")]
|
||||
public class StatusController : Controller
|
||||
{
|
||||
[HttpGet]
|
||||
public IActionResult Get()
|
||||
{
|
||||
return Ok();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user