namespace Pulsar.Features.ShipLocker; using Observatory.Framework.Files.Journal.Odyssey; public interface IShipLockerService : IJournalHandler; public class ShipLockerService(ILogger logger) : JournalHandlerBase(logger), IShipLockerService { public override string FileName => FileHandlerService.ShipLockerFileName; public override Task Get() { throw new NotImplementedException(); } public override Task HandleFile(string filePath) { throw new NotImplementedException(); } }