2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-12-16 20:54:57 +01:00
Files
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());
}
}