feat(templateGeneratorWorker): ci/cd, основной метод вынесен в отдельный класс.

This commit is contained in:
Mikhail Kuznetsov
2025-08-19 11:13:56 +10:00
parent 2c005f038e
commit 963da184f1
9 changed files with 202 additions and 127 deletions

View File

@@ -0,0 +1,7 @@
namespace PARR.TemplateGeneratorWorker
{
public interface ITemplateGenerator
{
Task GenerateTemplateAsync(string msg);
}
}