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

Added Basic File Watched

Started structure of Status Service
Not Yet Tested
This commit is contained in:
2024-04-18 23:45:29 +10:00
parent ac30d3cd2a
commit 6f4330ef12
9 changed files with 137 additions and 32 deletions

View File

@ -1,5 +1,3 @@
using Microsoft.AspNetCore.SignalR;
namespace Pulsar.Features.Status;
[ApiController]

View File

@ -0,0 +1,18 @@
namespace Pulsar.Features.Status;
public class StatusService : IStatusService
{
public void HandleFile(string fileInfo)
{
throw new NotImplementedException();
}
}
public interface IStatusService : IJournalHandler
{
}
public interface IJournalHandler
{
void HandleFile(string fileInfo);
}