2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
pulsar/Pulsar/Features/ShipLocker/ShipLockerController.cs
Ben Parsons b44d822eb9 Rework JournalHandler Again
Reduce Code Dupe
Finished ModulesInfo
Started ShipLocker
2024-04-21 23:40:44 +10:00

12 lines
294 B
C#

namespace Pulsar.Features.ShipLocker;
[ApiController]
[Route("api/[controller]")]
public class ShipLockerController(IShipLockerService shipLockerService) : ControllerBase
{
[HttpGet]
public async Task<IActionResult> Get()
{
return Ok(await shipLockerService.Get());
}
}