2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-07-03 17:13:43 -04:00
Files
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();
}
}