16 lines
275 B
C#
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;
|
|
}
|
|
}
|
|
}
|