Import from internal git

This commit is contained in:
2025-10-11 13:08:09 +02:00
commit 97aaa715dc
175 changed files with 7014 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using Core.Process;
using Core.SpecConfig;
using Generator.Repo;
namespace Generator.Services;
public class PreGenerationService
{
private readonly PreGenerationRepo _repo;
public PreGenerationService(PreGenerationRepo repo)
{
_repo = repo;
}
public GenerationProcess ComputeGeneration(string specPath, GenerationType? generationType, PublishType publishType)
{
return _repo.GetProcess(specPath, generationType, publishType);
}
}