Files
CodeContextGenerator/CodeContextGenerator/Interfaces/IFileProcessorService.cs
2025-12-11 01:01:33 +05:00

7 lines
154 B
C#

namespace CodeContextGenerator.Interfaces;
public interface IFileProcessorService
{
string ProcessFileContent(string content, string fileName);
}