Добавлены mermaid диаграммы

This commit is contained in:
FrigaT
2025-12-25 12:59:20 +03:00
parent 9abf8daf90
commit 0dae811dd0
15 changed files with 1063 additions and 228 deletions

View File

@@ -0,0 +1,9 @@
namespace SQLLinter.Core.Interfaces;
public interface ISqlDiagramProcessor
{
void ProcessList(List<string> filePaths);
void ProcessList(Dictionary<string, Stream> files);
void ProcessPath(string path);
}