Files
parr_api/PARR.EsppTemplateSync/Services/ParserService.cs
2023-08-25 15:32:06 +10:00

16 lines
275 B
C#

namespace PARR.EsppTemplateSync.Services
{
internal class ParserService : IParserService
{
public async Task<bool> ParseAsync(string path)
{
//TODO:
bool isSuccess = true;
return isSuccess;
}
}
}