7 lines
154 B
C#
7 lines
154 B
C#
namespace CodeContextGenerator.Interfaces;
|
|
|
|
public interface IFileProcessorService
|
|
{
|
|
string ProcessFileContent(string content, string fileName);
|
|
}
|