It's for IPC. It isn't finished but it sshould be a full-duplex pipes
server handling multiple clients:
https://github.com/kless/GoServe/blob/master/serve/pipe.go
I use two named pipes to handle the initial conection with the
clients, then the server sends to the client 2 (anonymous) pipes
(using os.Pipe()) to follow with the communication, and to allows
multiple-clients.
I thought that os library was cross-system so os.Pipe should works in
Windows too. Does anybody coul confirm it?