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:
@ -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);
|
||||
}
|
Reference in New Issue
Block a user