Files
api-generator/Generator/Services/ExportService.cs
2025-10-11 13:08:09 +02:00

19 lines
304 B
C#

using Core;
using Generator.Repo;
namespace Generator.Services;
public class ExportService
{
private readonly ExportRepo _repo;
public ExportService(ExportRepo repo)
{
_repo = repo;
}
public void ExportAsPuml(ISpecFile file)
{
_repo.PlantUml(file);
}
}