mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
11 lines
373 B
C#
11 lines
373 B
C#
namespace Govor.Application.Interfaces;
|
|
|
|
public interface ISynchingService
|
|
{
|
|
/// <summary>
|
|
/// Brings all line breaks (CRLF, CR) to a single LF(\n) standard.
|
|
/// </summary>
|
|
/// <param name="input">The original line containing the line break.</param>
|
|
/// <returns>A string normalized using only \n.</returns>
|
|
string NormalizeNewlines(string input);
|
|
} |