2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-07-01 16:33:43 -04:00

Fix Dev Proxy

Setup User Secrets for config
This commit is contained in:
2024-05-05 23:02:48 +10:00
parent b44d822eb9
commit fc8149dcca
7 changed files with 37 additions and 16 deletions

View File

@ -7,6 +7,6 @@ public class StatusController(IStatusService status) : ControllerBase
[HttpGet]
public async Task<IActionResult> Get()
{
return Ok(status.Get());
return Ok(await status.Get());
}
}