26 lines
450 B
C#
26 lines
450 B
C#
namespace PARR.EsppTemplateSync.Services
|
|
{
|
|
internal class ParserService : IParserService
|
|
{
|
|
public async Task<bool> ParseFileAsync(string path)
|
|
{
|
|
//TODO:
|
|
|
|
bool isSuccess = true;
|
|
|
|
|
|
return isSuccess;
|
|
}
|
|
|
|
public async Task<bool> ParseStringAsync(string str)
|
|
{
|
|
//TODO:
|
|
|
|
bool isSuccess = true;
|
|
|
|
|
|
return isSuccess;
|
|
}
|
|
}
|
|
}
|