Add Shipyard & Fix ShipLocker

Update File handling
Update Journal handling
Update README.md
This commit is contained in:
Ben Parsons 2024-05-10 22:26:44 +10:00
commit 235cb2401a
17 changed files with 253 additions and 528 deletions

View file

@ -40,7 +40,7 @@ public class StatusService
public async Task HandleFile(string filePath)
{
if (!ValidateFile(filePath))
if (!FileHelper.ValidateFile(filePath))
{
return;
}
@ -61,7 +61,7 @@ public class StatusService
{
var statusFile = Path.Combine(options.Value.JournalDirectory, FileName);
if (!ValidateFile(statusFile))
if (!FileHelper.ValidateFile(statusFile))
{
return new Status();
}