Suppression des print innutiles

This commit is contained in:
Benjamin
2022-03-20 15:32:45 +01:00
parent 52032b5676
commit ca9dd538e3
6 changed files with 4 additions and 22 deletions

View File

@@ -87,10 +87,6 @@ func main() {
requestManager := managers.RequestManager{Repository: protocolRepository}
server := network.ServerUnicast{Network: "tcp", Port: appConfig.UnicastPort, ReqManager: &requestManager}
server.Run() // TODO : -> pourquoi ne pas partir dans un thread ici.
server.Run()
//reader := bufio.NewReader(os.Stdin) TODO ne pas oublier ici de mettre en place un point de sortie pour le programme.
//fmt.Print("Type Enter to quite: ")
//cmd, _ := reader.ReadString('\n')
//println(cmd)
}