namespace Govor.Application.Interfaces;
public interface ISynchingService
{
///
/// Brings all line breaks (CRLF, CR) to a single LF(\n) standard.
///
/// The original line containing the line break.
/// A string normalized using only \n.
string NormalizeNewlines(string input);
}