Added Basic File Watched
Started structure of Status Service Not Yet Tested
This commit is contained in:
parent
ac30d3cd2a
commit
6f4330ef12
9 changed files with 137 additions and 32 deletions
|
|
@ -1,5 +1,3 @@
|
|||
using Microsoft.AspNetCore.SignalR;
|
||||
|
||||
namespace Pulsar.Features.Status;
|
||||
|
||||
[ApiController]
|
||||
|
|
|
|||
18
Pulsar/Features/Status/StatusService.cs
Normal file
18
Pulsar/Features/Status/StatusService.cs
Normal 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);
|
||||
}
|
||||
Loading…
Reference in a new issue