mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
18 lines
314 B
C#
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);
|
|
} |