mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
24 lines
581 B
C#
24 lines
581 B
C#
namespace Pulsar.Features.ModulesInfo;
|
|
|
|
using Observatory.Framework.Files;
|
|
|
|
public interface IModulesInfoService : IJournalHandler<ModuleInfoFile>;
|
|
|
|
public class ModulesInfoService : IModulesInfoService
|
|
{
|
|
public string FileName => FileHandlerService.ModulesInfoFileName;
|
|
public Task HandleFile(string filePath)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool ValidateFile(string filePath)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<ModuleInfoFile> Get()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |