From a2b705ed1c3e36993120c9d63665f356862d3934 Mon Sep 17 00:00:00 2001 From: Benjamin Date: Tue, 22 Feb 2022 12:23:01 +0100 Subject: [PATCH] Ajout d'un TODO --- pkg/network/ServerUnicast.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/network/ServerUnicast.go b/pkg/network/ServerUnicast.go index 7abee44..65b1105 100644 --- a/pkg/network/ServerUnicast.go +++ b/pkg/network/ServerUnicast.go @@ -36,7 +36,7 @@ func (server ServerUnicast) Run() { } result := server.ReqManager.Execute(line) - con.Write(append([]byte(result), '\n')) + con.Write(append([]byte(result), '\n')) // TODO : ATTENTION laisser les \n } }