2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
pulsar/Pulsar/Features/Status/StatusService.cs
Ben Parsons 6f4330ef12 Added Basic File Watched
Started structure of Status Service
Not Yet Tested
2024-04-18 23:45:29 +10:00

18 lines
314 B
C#

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);
}