2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
pulsar/Pulsar/Features/ModulesInfo/ModulesInfoService.cs
2024-04-21 17:10:45 +10:00

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