Add initial API & Configuration
This commit is contained in:
parent
0ade7b8b1f
commit
aa368471fe
13 changed files with 119 additions and 138 deletions
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();
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue