test to make server

This commit is contained in:
Artemy
2026-02-08 22:30:29 +07:00
parent cc2921d257
commit 0a43e35797
56 changed files with 949 additions and 442 deletions
@@ -0,0 +1,11 @@
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);
}